tags:

views:

120

answers:

3

I have a list of cities and places, and I want to get their Geographical coordinates. Is there any api can do it?

+3  A: 

This process is called "Geocoding". Here's Google's API for this. There are also several other services that do this listed on the "Geocoding" Wikipedia page.

David
thank you guys!
Linkc
A: 

Take a look at GClientGeocoder (part of the API). It will return a GLatLng object based on the string you provide to getLatLng

Matt
A: 

Google has a limit on the number of requests you can make per day. If you need a higher volume than Google allows, and you can live with lower quality data, you can try USC WebGIS.

duffymo