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

发布于 2024-10-17 06:02:44 字数 328 浏览 4 评论 0原文

我需要通过 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心清如水 2024-10-24 06:02:44

我尝试使用的解决方案是谷歌网络服务;)。
它起作用了!

The solution that I try to use is the google web service ;).
It work!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文