首頁 >web前端 >js教程 >如何使用 Javascript 避免 Google Maps API v3 中出現 OVER_QUERY_LIMIT 錯誤?

如何使用 Javascript 避免 Google Maps API v3 中出現 OVER_QUERY_LIMIT 錯誤?

Linda Hamilton
Linda Hamilton原創
2024-11-02 16:30:02508瀏覽

How to Avoid OVER_QUERY_LIMIT Errors in Google Maps API v3 with Javascript?

在Google Maps API v3 中確定OVER_QUERY_LIMIT:使用Javascript 減慢請求

在Google編碼地圖中發出過多地理請求

在Google編碼中發出過多地理請求會出現OVER_QUERY_LIMIT 錯誤API v3。為了避免此錯誤,必須在每個請求之間引入暫停以減慢進程速度。
<code class="javascript">function codeAddress(vPostCode) {
  if (geocoder) {
    geocoder.geocode( { 'address': "'" + vPostCode + "'"}, function(results, status) {
      if (status == google.maps.GeocoderStatus.OK) {
        // Handling success
      } else if (status == google.maps.GeocoderStatus.OVER_QUERY_LIMIT) { 
        // Handling OVER_QUERY_LIMIT error
      } else {
        // Handling other errors
      }
    });
  }
}</code>

這是原始程式碼:

<code class="javascript">function codeAddress(vPostCode) {
  if (geocoder) {
    while (wait) { /* Just wait. */ };
    geocoder.geocode( { 'address': "'" + vPostCode + "'"}, function(results, status) {
      if (status == google.maps.GeocoderStatus.OK) {
        // Handling success
      } else if (status == google.maps.GeocoderStatus.OVER_QUERY_LIMIT) { 
        wait = true;
        setTimeout("wait = true", 2000);
        // Handling OVER_QUERY_LIMIT error
      } else {
        // Handling other errors
      }
    });
  }
}</code>

要實現暫停,我們可以利用以下內容程式碼:

在此修改後的程式碼中,我們引入了一個等待變量,用於在發生OVER_QUERY_LIMIT 錯誤時暫停執行。然後設定 2000 毫秒的逾時來恢復執行,從而在請求之間提供延遲。

以上是如何使用 Javascript 避免 Google Maps API v3 中出現 OVER_QUERY_LIMIT 錯誤?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn