减慢对一批地址进行地理编码的速度

发布于 2024-11-17 08:21:30 字数 230 浏览 1 评论 0原文

我计划使用 Google Maps V3 API 对存储在数组中的一批地址进行地理编码。这些地址将从我的数据库中检索并进行地理编码,以便我可以在地图上为它们创建标记。

不过,我知道 Google 对发送给他们的地理编码请求的速率设置了限制,所以我想知道如何使用 PHP 来限制地理编码请求的速率,大​​约每 10 秒 1 个地理编码?

睡眠(10);

I'm planning to use the Google Maps V3 API to geocode a batch of address stored in an array. These address will be retrieved from my database and geocoded so I can create markers for them on the map.

However I understand that Google has placed a limit on the rate of geocoding requests sent to them, so I am wondering how I can use PHP to limit the rate of geocoding requests, to maybe 1 geocode every 10 seconds?

sleep(10);?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

莳間冲淡了誓言ζ 2024-11-24 08:21:30

是的,sleep(10) 可以做到这一点。

或者,在客户端计算机上使用 javascript 运行地理编码。速率限制基于 IP 地址,因此您可以通过让访问者的浏览器进行地理编码来将其传播给访问者。

Yep, sleep(10) would do that.

Alternatively, run the geocoding using javascript on the client machine. The rate limiting is based on the IP address, so you can spread this out over your visitors by having their browser do the geocode.

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