--
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 google-map...@googlegroups.com.
To unsubscribe from this group, send email to google-maps-js-a...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-maps-js-api-v3?hl=en.
I think that last suggestion is to be preferred; but if you do all of
them or just the changed ones, send the next request only when the
previous result has been received. That way you are guaranteed not to
break the rate limit, and it may run slightly faster than your
pre-defined rate. Or slower, if the server needs that.
That way you are guaranteed not to
break the rate limit
This is the rate limit Chris mentions. BUt the exact rate is not
published, think of it as 104 an hour if you like. But its likly to be
different.
So you need to aim on spread the results out. For a small amount your
0.5 second might be enough. But to be able to use the full amount
would be about 35 seconds delay between calls.
Perhaps better, is start with a low delay and then increase it when
you get errors. (but I think that was already mentioned in the thread)