Javascript GMAPSAPIV3的多重地理编码请求

Javascript GMAPSAPIV3的多重地理编码请求,javascript,google-maps-api-3,geocode,Javascript,Google Maps Api 3,Geocode,我需要通过GMAPSAPIV3提交多个地理编码请求。特别是它的工作,但只有5个要求。这是我的代码,其中city.length=100: for(i=0; i<city.length; i++) { $('#nome').html(city[i]); latLng = new google.maps.LatLng(lat[i],lng[i]); geocoder.geocode({ 'latLng': latLng, 'partialmatc

我需要通过GMAPSAPIV3提交多个地理编码请求。特别是它的工作,但只有5个要求。这是我的代码,其中city.length=100:

for(i=0; i<city.length; i++) {

   $('#nome').html(city[i]);
   latLng = new google.maps.LatLng(lat[i],lng[i]);

   geocoder.geocode({
       'latLng': latLng,
       'partialmatch': true
   }, geocodeFunction);
}

我尝试使用的解决方案是GoogleWeb服务;。
成功了

谷歌地理编码API的使用受限于每天2500个地理定位请求的查询限制。Google Maps API Premier的用户每天最多可执行100000个请求。