Identification of regions google maps - JavaScript

5

I have a list of latitudes and longitudes and I would like to find out in which region of the country such latitude / longitude belongs.

    
asked by anonymous 22.10.2015 / 21:39

1 answer

3

Use Reverse Geocoding . Example:

http://maps.googleapis.com/maps/api/geocode/json?latlng=40.714224,-73.961452&sensor=false

Returns a JSON with several elements, including:

formatted_address" : "277 Bedford Ave, Brooklyn, NY 11211, USA", [...]
    
22.10.2015 / 21:56