我需要通过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);
}
答案 0 :(得分:0)
我尝试使用的解决方案是google网络服务;)。 它有效!