All.
I'm drawing a leader line point to the center of my polygons. My issue is using map point will make my leader lines varies depending on the zoom scale. Is there any way I can make my leader lines look the same on screen regardless of the map scale? Thanks in advance.
var shape = row as Feature;
var poly = shape.GetShape() as Polygon;
var maxY = poly.Extent.YMax + 1500;
var maxX = poly.Extent.XMax + 1500;
MapPoint maxPoint = MapPointBuilder.CreateMapPoint(maxX, maxY);