I need to construct a distance matrix among  some 100 locations (this
is about 10K requested).
In order to avoid the request quota issue
I wrote a program that submit an http query every 40 seconds. That is
less than 2500 queries a day

My query look like this
"http://maps.googleapis.com/maps/api/directions/json?
origin="+lat1+","+long1+"&destination="+lat2+","+long2+"&sensor=false&units=metric"
(where str(lat) and str(lon) represent are strings contain the
latitude and longitude,

However after 100-200 queries I start getting the OVER_QUERY_LIMIT
error.
Moreover, even after waiting for several hours I can not submit more
queries from the same IP. That is, it seems that I was blacklisted,

-- 
You received this message because you are subscribed to the Google Groups 
"Google Maps API V2" 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-api?hl=en.

Reply via email to