1

I have implemented one application .In which i want to get latitude and longitude from the address.I dont want to use java script.Is it possble then please help me.

MD.
  • 1,131
  • 4
  • 18
  • 28

3 Answers3

0

AFAIK, MKMapKit does not support this.

zaf
  • 22,776
  • 12
  • 65
  • 95
0

MapKit has no geocoding support (only reverse geocoding) but Google offers a HTTP Geocoding service that's very easy to use – assuming you comply with their license terms:

Note: the geocoding service may only be used in conjunction with a Google map; geocoding results without displaying them on a map is prohibited.

Ole Begemann
  • 135,006
  • 31
  • 278
  • 256
0

Use the example from Apple’s «Location Awareness Programming guide: Geocoding Location Data» to pinpoint your location on the map, then call Google Geocoding Service (post a request, parse the result json/xml data) to get the address.

kervich
  • 487
  • 3
  • 13
  • There is also a couple of readymade libraries mentioned here: [link](http://stackoverflow.com/questions/1140404/forward-geocoding-from-the-iphone) available to make the dirty work for you. – kervich Feb 22 '11 at 09:35