-1

I Want to place annotations on the Map based on the given longitude and latitude? Can anybody help me to solve this problem with Simple code.

3 Answers3

1

Use CLGeocoder class if you target for iOS ≥ 5.0, or MKReverseGeocoder class for iOS 4.

ivanzoid
  • 5,952
  • 2
  • 34
  • 43
  • 1
    Just Refer techotopia/iPhone material,provided nice example on "How to find out longitude and latitude" and "How to annotate the pinpoint on the given longitude and latitude" – DevendranathReddy Mar 02 '12 at 11:37
1

Here is the Solution. Try to search thru stackoverflow before asking questions…

Community
  • 1
  • 1
mariusLAN
  • 1,195
  • 1
  • 12
  • 26
0

That's called reverse geocoding and can be done with the CLGeocoder (iOS5) or MKReverseGeocoder (iOS3+5) class.

Here is a tutorial for CLGeocoder: click

dom
  • 11,894
  • 10
  • 51
  • 74