- Feb 17, 2002
- 4,723
- 80
- 91
I'm interested in using Google's Geocoding API for the sole purpose of "converting" a street address to 2D world coordinates used in mapping.
This is what will happen:
1. The content provider enters a street address.
2. A (latitude, longitude) coordinate is retrieved from Google Maps for that address.
3. The address is stored in an XML file on the web server.
4. The XML file is polled by mobile apps (iOS) and later used for displaying on a map on the device.
So which API key do I need? I'm more worried about the server side stuff on the web application side of things (PHP, if that matters). I don't want the Geocoding API calls to be done on the devices; this would bog down the device (too many requests) and most likely kill the daily limits allowed by the API license.
Any ideas?
Edit: for anyone else doing something similar, I did find a super useful tutorial for EXACTLY what I'm trying to do here, provided by Google. The only problem, however, is that it still doesn't mention where to sign up for the proper API key required for the solution...
This is what will happen:
1. The content provider enters a street address.
2. A (latitude, longitude) coordinate is retrieved from Google Maps for that address.
3. The address is stored in an XML file on the web server.
4. The XML file is polled by mobile apps (iOS) and later used for displaying on a map on the device.
So which API key do I need? I'm more worried about the server side stuff on the web application side of things (PHP, if that matters). I don't want the Geocoding API calls to be done on the devices; this would bog down the device (too many requests) and most likely kill the daily limits allowed by the API license.
Any ideas?
Edit: for anyone else doing something similar, I did find a super useful tutorial for EXACTLY what I'm trying to do here, provided by Google. The only problem, however, is that it still doesn't mention where to sign up for the proper API key required for the solution...
Last edited: