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.
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;
}