I am using Core Location in iOS to get GPS coordinates. I would like to get some human readable text description of the general region where these coordinates are. I can do this either locally on the device itself or on a PHP-based website to which I am submitting the coordinates.
Any ideas?
You can do the reverse geocoding in iOs on the device itself using the MKReverseGeocoder : http://developer.apple.com/library/ios/#documentation/MapKit/Reference/MKReverseGeocoder_Class/Reference/Reference.html#//apple_ref/occ/cl/MKReverseGeocoder
You can see some sample usage here.