如何检测我每天有多少GeoCode请求?

时间:2013-09-11 10:03:50

标签: geocoding google-geocoder

我了解Google地理编码API每天限制为2,500个请求。

有没有办法可以检测到我正在发出的请求数量?

1 个答案:

答案 0 :(得分:0)

只记录你正在做的每一个请求......

像这样的东西

var i = 0;

if(i < 2500)
{
    // Your geocoding request here

    i++;
}
//Display i, or save it into a file