Hello,
I use the ovelay marker with drag option :
Map1.CustomOverlays.Clear();
PointShape point = Map1.CurrentExtent.GetCenterPoint();
//Map1.CurrentExtent = new RectangleShape(x_coor - 0.001, y_coor + 0.001, x_coor + 0.001, y_coor - 0.001);
markerOverlay1.DragMode = MarkerDragMode.Drag;
markerOverlay1.Markers.Add(new Marker(point.X, point.Y, new WebImage(21, 25, -10.5f, -25f)));
Map1.CustomOverlays.Add(markerOverlay1);
when i drag the marker he also pan the map in way the the marker locate in the map center, but once you pan that map the drag mode only drag the marker without paning the map, i need to get back the position coordinate of the marker after draging so if it stop paning the map i mcant know the recent posion of the marker (not center map any more) any idea how i fix this issue?
thanks
Jamil