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.
Asked
Active
Viewed 4,850 times
3 Answers
1
Use CLGeocoder class if you target for iOS ≥ 5.0, or MKReverseGeocoder class for iOS 4.

ivanzoid
- 5,952
- 2
- 34
- 43
-
1Just 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…
-
Already provided solutions in stack overflow are not working properly. – DevendranathReddy Mar 22 '12 at 10:36
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