It would be nice if the WinformsMap (or it's ExtentInteractiveOverlay) could generate events that signal when the Map has been panned or zoomed interactively by the user.
Feature Request: Interactive Pan & Zoom notification events
Nate,
Thanks for your post and suggestions.
There are couples of events you can use to clarify in the Extent Overlay. For example,
You could use the following post to say its zoom:
winformsMap1.ExtentOverlay.MapMouseWheel += new EventHandler<MapMouseWheelInteractiveOverlayEventArgs>(ExtentOverlay_MapMouseWheel);
winformsMap1.ExtentOverlay.MapMouseDoubleClick += new EventHandler<MapMouseDoubleClickInteractiveOverlayEventArgs>(ExtentOverlay_MapMouseDoubleClick);
Also you could you use MouseMove event to say its panning:
winformsMap1.ExtentOverlay.MapMouseMove += new EventHandler<MapMouseMoveInteractiveOverlayEventArgs>(ExtentOverlay_MapMouseMove);
Any more questions just feel free to let me know.
Thanks.
Yale