How I can h开发者_StackOverflowandle 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;
}
精彩评论