On 29 October 2012 18:49, pec76 <[email protected]> wrote: > Hello, > > I use this kind of url to gecode addresses > > http://maps.googleapis.com/maps/api/geocode/xml?sensor=false&address=Paris+France > > But now I want to add my personnal APIkey v3 (Simple API access). How can I > add this apikey V3 in my geocode url.
Here's the documentation: https://developers.google.com/maps/documentation/geocoding/#GeocodingRequests There is no provision for a key. > I need this because I have many many geocode to do. In that case you're going about it the wrong way. You should use the API (where your key is used, but it's still subject to rate and usage limits). Here's a v3 example derived from Mike Williams' v2 method: http://acleach.me.uk/gmaps/v3/plotaddresses.htm That page geocodes a list and outputs the results. You can see the rate is adjusted -- requests are slowed down towards the end. It's still subject to the absolute limit of 2500 per day, though. And that's measured in six-hour chunks, so it will stop working once you have reached 625 in six hours. If you need more than that you need to buy a Google Maps for Business licence, which is quite expensive. Or persuade them that you qualify for a charitable licence. Note that if you use the Google geocoder and its data you MUST plot the results on a Google Map, which needs to be publicly accessible. -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-maps-js-api-v3?hl=en.
