On Sep 20, 5:13 pm, Dam <[email protected]> wrote: > I have a website that uses Google Maps API Geocoder to translate > multiple human readable addresses into google latlng and then add each > address as a marker on the map. > > I'm currently having trouble with geocoding more than 12 addresses. > All of the addresses are valid. If I comment out address one or two > addresses, then the 12th and/or 13th addresses are geocoded and marked > properly on the map. Other wise, the 12th address' geocode( ) returns > nothing. > > Does anyone know how to get around this limit? I've read that there's > a 2500 request limit/day but it doesn't seem to be related to the > issue I'm having.
There is a quota (2500 requests/day) and a rate limit (not documented) to prevent abuse of the system (like you are trying to do): http://code.google.com/apis/maps/articles/geocodestrat.html#quota-limits If you really need to geocode more that a few addresses for each unique user, you will need to add a delay. You probably should also geocode in a way that allows you to detect errors (the OVER_QUERY_LIMIT seems like a good one to check for). Have you seen this article on geocoding strategies? http://code.google.com/apis/maps/articles/geocodestrat.html -- Larry > > Any help is appreciated. Thank you. -- 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.
