Hello,
I've some label rendered at an incorrect place.
I'm using 3.1.302 and this code in metric mode:
PointShape pt = new PointShape();
pt.X = 10000;
pt.Y = 10000;
Columns.Add("Name", "Pt1");
l.EditTools.Add(pt, Columns);
pt = new PointShape();
pt.X = 10010;
pt.Y = 10010;
Columns.Add("Name", "Pt2");
l.EditTools.Add(pt, Columns);
pt = new PointShape();
pt.X = 0;
pt.Y = 0;
Columns.Add("Name", "Pt3");
l.EditTools.Add(pt, Columns);
If I set currentextent to see pt1 & Pt2 only, then the label of Pt3 is displayed very close to Pt2; which is of course not what I want.