As simple one is to have the following code in the MouseMove event GmapControl
private void map_MouseMove(object sender, MouseEventArgs e)
{
base.OnMouseMove(e);
PointLatLng p = map.FromLocalToLatLng(e.X, e.Y);
label1.Text = Convert.ToString(p);
}
Guest UserPosted Sep 18, 2016, 11:06 PM