Is there a way how to detect that WpfMap is currently panning or zooming.
Indicating if Map is busy
Libor,
There is an event of the map CurrentExtentChanging that will fire each time the map is being panned, it the map is being zoomed in or out. It will also fire if the map extent is being changed by any other way such recentering the map etc. I suggest you check that event. Also, I invite you to check all the different events related to the extent of the map such as CurrentExtentChanged, CurrentScaleChanged, CurrentScaleChanging.
private void wpfMap1_CurrentExtentChanging(object sender, CurrentExtentChangingWpfMapEventArgs e)
{
//Write your code here.
}
Val, thank you. That should be sufficient for me.
Libor,
Thanks for your post, if you have any more questions please let us know again,
Thanks,
Scott,