gmaps api v3 的多个地理编码请求
我需要通过 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);
}
I need to multiple geocoding request by gmaps api v3. In particular it work but only 5 request. This is my code (where 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);
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我尝试使用的解决方案是谷歌网络服务;)。
它起作用了!
The solution that I try to use is the google web service ;).
It work!