标签: geocoding google-geocoder
我了解Google地理编码API每天限制为2,500个请求。
有没有办法可以检测到我正在发出的请求数量?
答案 0 :(得分:0)
只记录你正在做的每一个请求......
像这样的东西
var i = 0; if(i < 2500) { // Your geocoding request here i++; } //Display i, or save it into a file