Hello,
I'm just doing some testing for an application, I'm using the AxMap.DrawPoint method but when I go through the process, no point is being drawn on the map:
private void button1_Click(object sender, EventArgs e)
{
axMap1.Projection = tkMapProjection.PROJECTION_GOOGLE_MERCATOR;
axMap1.TileProvider = tkTileProvider.OpenStreetMap;
int draw = axMap1.NewDrawing(MapWinGIS.tkDrawReferenceList.dlScreenReferencedList);
double x = -167180.44;
double y = 6888731.71;
int pixel = 10;
uint color = 255;
axMap1.DrawPointEx(draw, x, y, pixel, color);
//axMap1.Redraw();
}
If I use the Lat, Long values, it draws a point but it's well of where it should be.
Any help will be greatly appreciated.
Thanks
Brendan
Comments: dear brendan07 and sleschinski! im working with this method to draw point to tracking, and i have long/lat coordinate of point so when i put lon/lat in axMap1.DrawPointEx(draw, x, y, pixel, color); the position isnt correct any suggestion? thanks guys
I'm just doing some testing for an application, I'm using the AxMap.DrawPoint method but when I go through the process, no point is being drawn on the map:
private void button1_Click(object sender, EventArgs e)
{
axMap1.Projection = tkMapProjection.PROJECTION_GOOGLE_MERCATOR;
axMap1.TileProvider = tkTileProvider.OpenStreetMap;
int draw = axMap1.NewDrawing(MapWinGIS.tkDrawReferenceList.dlScreenReferencedList);
double x = -167180.44;
double y = 6888731.71;
int pixel = 10;
uint color = 255;
axMap1.DrawPointEx(draw, x, y, pixel, color);
//axMap1.Redraw();
}
If I use the Lat, Long values, it draws a point but it's well of where it should be.
Any help will be greatly appreciated.
Thanks
Brendan
Comments: dear brendan07 and sleschinski! im working with this method to draw point to tracking, and i have long/lat coordinate of point so when i put lon/lat in axMap1.DrawPointEx(draw, x, y, pixel, color); the position isnt correct any suggestion? thanks guys