Click here to Skip to main content
15,885,842 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
hi,
i am newbie at using google maps in a winforms.
i would like help:
i have gmaps in my program but i want the coordinates to appear in the long/lat textbox when i click anywhere on the map. and the user can use that same textbox to add their own long/lat coordinates and the map should go to that location.

C#
internal void LoadMap()
        {
            gMapVenues.MapProvider = GMap.NET.MapProviders.GMapProviders.GoogleMap;
            gMapVenues.MinZoom = 3;
            gMapVenues.MaxZoom = 17;
            gMapVenues.Zoom = 4;
            gMapVenues.Manager.Mode = GMap.NET.AccessMode.ServerAndCache;
            gMapVenues.Position = new PointLatLng(-33.91530000, 18.42560000);

            GMapOverlay overlayOne = new GMapOverlay("OverlayOne");
            gMapVenues.Overlays.Add(overlayOne);

        }
Posted

1 solution

subscribe to MouseClick event and use map.FromLocalToLatLng
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900