> I got error "Geocode was not successful for the following reason: > OVER_QUERY_LIMIT" when I try to display markers on map. >
Isnt that kinda self explanority. You've made too many queries! There is a quota, its not unlimited use. You need to reduce your limit. You appear to be regeocding the same locations each time the page is loaded. That's not only a waste of resources, its slow for the user, and it eats quota. Instead you should geocode the location ONCE, and save the lat/long in your database for reuse. Kinda like caching. There is a seperate HTTP geocoder you can use server side, or you can still do it client side. If you have a location in the database for a point, use it. If not, use the geocoder as you have now, then use AJAX style request to submit the location back to the server. That way the next request doesnt need to use geocoding quota. (actully not just once, should set the location to expire, say every 60 days, so it is regeocoded from time to time. To allow for corrections to the database) -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-maps-js-api-v3. For more options, visit https://groups.google.com/groups/opt_out.
