I'm making the following call to the google maps api 22 times in my javascript. As I understand the API limits, there is no way I should be going over the limit. I get through the first 11 calls but the last half are returned OVER_QUERY_LIMIT status
geocoder.geocode({"address": "Alpharetta, GA"}, function(results, status) {
console.log(status);
if(results!== null){
var marker = new google.maps.Marker();
marker.setPosition(results[0].geometry.location);
marker.setMap(map);
marker.setTitle("Studio Movie Grill");
google.maps.event.addListener(marker, 'click', function() {
window.setTimeout(function() { alert(marker.getTitle()); }, 1000);
});
bounds.extend(marker.position);
map.fitBounds(bounds);
}
});