i want to know if i can see place on map-MKMapView- by entering the name of a place. like if i enter "Paradise Valley, AZ, United States" in here http://maps.google.com/ and it give me the location on the map of that place.
-
The short answer to your question would be "yes". But that's not really what your are asking for is it? – Claus Broch Apr 06 '11 at 15:24
3 Answers
Below is source code of Address to Coordinate and ReverseGeoCoordinate.
http://xxki.com/tutorial/pukiwiki.php?MacOS%2FiPhone%20-%20MapKit
Some more links to MapKit tutorial to learn abt the Map framework in iPhone
http://www.switchonthecode.com/tutorials/getting-your-location-in-an-iphone-application

- 1
- 1

- 31,697
- 9
- 72
- 76
Forward geocoding is not available in the iOS SDK (unlike reverse geocoding). I use this solution -
http://blog.sallarp.com/ipad-iphone-forward-geocoding-api-google/
This works really well for me. You can try it if you download my app, iGoBy, then go to the map and search for an address (Not trying to advertise here, just to let you see it working :))

- 201
- 3
- 6
Google have this feature available through their map API.
You could also use geonames.org which have a similar API. My ILGeoNames project on GitHub provides some simple Objective C wrappers for accessing geonames.org.
Update: You would need to do the annotations on the map yourself though.

- 9,212
- 2
- 29
- 38