HTML5 Geolocation이나 Google API를 사용하여 위도와 경도를 얻으려면 이를 위한 JavaScript를 추가해야 합니다.
스크립트는 다음과 같습니다 -
if (navigator.geolocation) { /* If current position is obtained then there is success otherwise there is failure. On failure, separate error message is shown */ navigator.geolocation.getCurrentPosition(successFunc, errorFunc); } else { alert(‘Geolocation is not enabled in your browser. Please use a latest browser to supports it.'); }
위 내용은 HTML5 위치정보 또는 Google API를 사용하여 주소의 위도와 경도를 얻는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!