views:

155

answers:

1

I have a problem while acessing google maps from my application, when i send more than 10 requests in loop from java script i get the exception as OVER_QUERY_LIMIT from geocoder service. is there any way that i can get rid of this, i tried giving some time delays using setInterval() etc.. .but doesnt work.

A: 

Probably you are sending too many requests per second and Google doesn't let you do that (http://code.google.com/apis/maps/faq.html#geocoder_limit).

Read http://code.google.com/apis/maps/faq.html#geocoder_classorhttp

Elijah