mattmuirhead
mattmuirhead

Reputation: 73

JS Google Geocode - Finding Address from Longitude and Latitude

I have 3 variables longitude, latitude and address.

var long = ##;
var lat = ##;
var address = ""; 

Can I convert the long and lat that I have into an address which I can save in the address variable?

Thanks

Upvotes: 0

Views: 1821

Answers (1)

Neil
Neil

Reputation: 412

You Can use Google Maps API.

here is an link for reverse Geocoding.
REVERSE GEOCODING GOOGLE API

Upvotes: 0

Related Questions