Question

I've seen that it's possible to get the latitude and longitude (geocoding, like in Google Maps API) from a street address, but is it possible to do the reverse and get the street address when you know what the lat/long already is?

The application would be an iPhone app (and why the app already knows lat/long), so anything from a web service to an iPhone API would work.

OTHER TIPS

Google now supports reverse geocoding in both JavaScript API and webservice over HTTP. Request looks like this:

http://maps.google.com/maps/geo?output=xml&oe=utf-8&ll=LAT,LON&key=API_KEY

Note, you must change LAT to latitude, LON to longitude and API_KEY to be you Google Maps API key. Service return results on on countries which geocoding marked as YES in following spreadsheet:

http://gmaps-samples.googlecode.com/svn/trunk/mapcoverage_filtered.html

More info should be found soon from official documentation:

http://code.google.com/apis/maps/documentation/services.html#Geocoding_Direct

This is called "reverse geocoding", and there do exist web services that will provide this functionality.

I'd urge being wary of the quality, scaling, and reliability of free services, but here's a place to start: http://www.geonames.org/export/reverse-geocoding.html

iPhone OS 3.0 now has the MKReverseGeocoder class for precisely this purpose.

You can also use LINK REMOVED library for that purpose. MKReverseGeocoder is nice but it requires you to use it with a Google map. From MKReverseGeocoder reference documentation:

The Google terms of service require that the reverse geocoding service be used in conjunction with a Google map; take this into account when designing your application’s user interface.

SSLocationManager might be an alternative in the case your application does not use a Google Map but just needs to access detailed information about the current location having only latitude and longitude data at hand. It uses Yahoo! PlaceFinder API. Hope this helps.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top