How do I find the GeoPoint locations for various cities around the world.
I am trying to load a map on my android app with certain cities having a pin overlay item.
I was following the example on Google’s android tutorials where they mention locations for Mexico City and japan. How about the other cities around the world.??
Look into using Geocoder. Specifically
Geocoder.getFromLocationName.Once you get the List of Addresses you can get the latitude and longitude from those Addresses.