This process is called reverse geocoding , and Google has extensive documentation.
Example:
$.ajax({ url:'http://maps.googleapis.com/maps/api/geocode/json?latlng=40.714224,-73.961452&sensor=true', success: function(data){ alert(data.results[0].formatted_address); } });
kieran
source share