4

I am getting latitude and longitude using CLLocation. I want to know how I can get the address by using this latitude and longitude. Please help me.

Tim S. Van Haren
  • 8,861
  • 2
  • 30
  • 34
S.P.
  • 5,427
  • 11
  • 56
  • 83
  • can we use Google reverse geo coding api for that ? How to integrate it with iphone sdk – S.P. Jan 14 '10 at 11:28
  • Duplicate of http://stackoverflow.com/questions/1858872/address-of-location , http://stackoverflow.com/questions/1551475/get-place-location , among others. – Brad Larson Jan 14 '10 at 13:44

1 Answers1

8

You can use MKReverseGeocoder class for that purpose, which uses google reverse geocoding facilities.

Update: MKReverseGeocoder class is deprecated in iOS 5, you should use CLGeocoder class from Core Location framework instead. It provides functions for both forward and reverse geocoding - check class reference for more details

Vladimir
  • 170,431
  • 36
  • 387
  • 313