gmaps api v3的多重地理编码请求

时间:2011-02-14 15:48:01

标签: javascript google-maps-api-3 geocode

我需要通过gmaps api v3进行多次地理编码请求。特别是它工作但只有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);
}

1 个答案:

答案 0 :(得分:0)

我尝试使用的解决方案是google网络服务;)。 它有效!