我们正在使用Google距离矩阵API来计算所有地点之间的距离。用户的位置
我们的预期用户数为20000&地方数是10,000
因此,总距离最小为20,000 * 10,000 = 2,00,00,000个距离矩阵API最低要求
用户也可以搜索多个时间位置。
因此,按用户搜索10,000个请求将计算用户与每个地方的距离。 &安培;用户可以多次搜索。
因此,每个用户的请求都很大。
我们是否应该使用Google distance Matrix免费API或MAPS API FOR WORK的购买配额?
答案 0 :(得分:0)
Google Distance Matrix API的限制如下
免费API的用户:
- 100 elements per query.
- 100 elements per 10 seconds.
- 2500 elements per 24 hour period.
Google Maps API for Work客户:
- 625 elements per query.
- 1000 elements per 10 seconds.
- 100 000 elements per 24 hour period.
如果你说每个客户将有10k个查询,甚至远远超出了单个工作站查询的每日距离矩阵限制。 您需要使用Work客户服务包。
更多信息: https://developers.google.com/maps/documentation/distancematrix/
对于那些想要利用 Google Distance Matrix API 的人,我在此处分享了一些代码示例在VBA : http://www.analystcave.com/excel-calculate-distances-between-addresses/