문제

How I can handle map move event by user? (Down left mouse button and mouse move)

My goal is remove all users event, which can modification map view.

I using Bing Silverlight Map Control.

도움이 되었습니까?

해결책

I solved that with this code

private void Map_MousePan(object sender, MapMouseDragEventArgs e)
{
        e.Handled = true;
}
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top