Click here to Skip to main content
15,867,308 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi there,

I'm working with Gmap.net, a library that helps to embed google maps in your windows form application. Gmap.net is great library but it has no documentation :(

I be able to get the latitude and longitude of the point where my mouse clicks on the map like:

double lat = gm1.FromLocalToLatLng(e.X, e.Y).Lat;
double lng = gm1.FromLocalToLatLng(e.X, e.Y).Lng;


But i could not find a way to have the info of location like country name, city name etc.

Any help would be great!
Posted

1 solution

try:
C#
List<Placemark> plc = null;
var st = GMapProviders.GoogleMap.GetPlacemarks(new PointLatLng(54.6961334816182, 25.2985095977782), out plc);
if(st == GeoCoderStatusCode.G_GEO_SUCCESS && plc != null)
{
    foreach(var pl in plc)
    {
      if(!string.IsNullOrEmpty(pl.PostalCodeNumber))
      {
        Debug.WriteLine("Accuracy: " + pl.Accuracy + ", " + pl.Address + ", PostalCodeNumber: " + pl.PostalCodeNumber);
      }
    }
}
 
Share this answer
 
Comments
Member 11027022 22-Aug-14 8:42am    
What the GMapProviders in the second line means?? Thanx
Member 11446785 22-Mar-15 6:07am    
No Error but not working
Member 12365345 6-May-16 7:30am    
It doesn't work for all countries,any more bright ideas ?

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