Google Maps API v3에서 OVER_QUERY_LIMIT 확인: Javascript로 요청 속도 저하
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:
<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 중국어 웹사이트의 기타 관련 기사를 참조하세요!