Hi all!
I just try to track zoom in my map. But it's not excecute. I don't know how. Please help me!
It's my code:
winformsMap1.InteractiveOverlays.Clear();
ExtentInteractiveOverlay extentInteractiveOverlay = new ExtentInteractiveOverlay();
extentInteractiveOverlay.PanMode = MapPanMode.Disabled;
extentInteractiveOverlay.RightClickDragMode = MapRightClickDragMode.ZoomOutWithKey;
extentInteractiveOverlay.RightClickDragKey = Keys.None;
extentInteractiveOverlay.ZoomPercentage = 50;
winformsMap1.InteractiveOverlays.Add(extentInteractiveOverlay);
Thanks all!