Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Google Geocoding API には 1 日あたり 2,500 リクエストの制限があることを理解しています。
自分が行っているリクエストの量を検出できる方法はありますか?
行っているすべてのリクエストをログに記録するだけです...
そんな感じ
var i = 0; if(i < 2500) { // Your geocoding request here i++; } //Display i, or save it into a file