减慢对一批地址进行地理编码的速度
我计划使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,
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.