How can I get latitude and longitude from a full address (street, city, etc.) input by the user, using the iPhone SDK 3.x?
|
You can use Google Geocoding for this. It is as simple as getting data through HTTP and parsing it (it can return JSON KML, XML, CSV). |
|||
|
|
|
Here's an updated, more compact, version of unforgiven's code, which uses the latest v3 API:
It makes the assumption that the coordinates for "location" come first, e.g. before those for "viewport", because it just takes the first coords it finds under the "lng" and "lat" keys. Feel free to use a proper JSON scanner (e.g. SBJSON) if you are worried about this simple scanning technique used here. |
|||||||||||
|
|
Here's a similar solution for obtaining the latitude and longitude from Google. Note: This example uses the SBJson library, which you can find on github:
|
||||
|
|
|
The following method does what you asked for. You need to insert your Google maps key for this to work correctly.
|
|||
|
|
|
There's also CoreGeoLocation, which wraps up the functionality in a framework (Mac) or static library (iPhone). Supports lookups through Google or Yahoo, if you have a preference for one over the other. |
|||
|
|
|
For the google map key solution, as described by unforgiven above, doesn't one has to make the app free? As per google terms & conditions: 9.1 Free, Public Accessibility to Your Maps API Implementation. Your Maps API Implementation must be generally accessible to users without charge. With map kit in sdk 3.0 this is easily done using the SDK. See apple's manuals or follow : http://www.devworld.apple.com/iphone/program/sdk/maps.html |
|||
|
|