views:

82

answers:

1

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.

A: 

I solved that with this code

private void Map_MousePan(object sender, MapMouseDragEventArgs e)
{
        e.Handled = true;
}
MicTech