Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Georeference batch

Hello,

I have a big client list , and i need   a information of latitude and longitude of adress.

my intention is inform a range of adress and the tool get me return a information of latitude and longitude.

i have been searching this information so many times in a few sites, but i can not find.

If someone can help me, thanks.

1 Reply
prabhuappu
Creator II
Creator II

Hi,

you can use the APIs to get latitude and longitude information of an address

you need to pass the location name as query parameter in the request url. the latitude and logitude information will be returned as JSON or XML format

Google API - https://developers.google.com/maps/documentation/geocoding/intro

     it has limitation of 2500 requests per day.

Sample Request URL:

https://maps.googleapis.com/maps/api/geocode/xml?address=1600+Amphitheatre+Parkway,+Mountain+View,+CA&key=YOUR_API_KEY

Open Street Map API - Nominatim - OpenStreetMap Wiki

It is free to use

Sample Request URL

http://nominatim.openstreetmap.org/search?q=135+pilkington+avenue,+birmingham&format=xml&polygon=1&addressdetails=1

Regards,

Prabhu Appu