Basically I have an iOS app that I want to find the parliamentary constituency that you are currently in based on geolocation, I can do this if I have the postcode (It has the be the full postcode as in "AA00 0AA" unlike the incomplete postcode Google Maps can supply). I therefore need to convert Longitude and Latitude to a postcode but I can't seem to find out how to do it. Any help/ideas would be much appreciated.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Take a look at CLGeocoder, it allows reverse-geocoding, which is the process of transforming a coordinate into an address. It uses iOS 5 and the method signature your looking for is this
Pay attention to the CLPlacemarks the geocoder returns and the fact that they have a field |
|||
|
|