Hi,
I tried to follow the "Zoom In To Point" project in the Code Community site.
I wanted the map to move so that the clicked point will be in the center but with no change in zoom
It seems to me that all i shoud do is modify one line of code in the ZoomInToPointInteractiveOverlay class:
interactiveResult.NewCurrentExtent = scaledDownRectangleShape;
becomes
interactiveResult.NewCurrentExtent = newExtent;
But this does not work and the map does not move at all.
Am i doing anything wrong?