HTML 내비게이터의 geolocation 속성은 사용자의 위치를 찾는 데 사용할 수 있는 Geolocation 객체를 반환합니다.
구문
다음은 구문입니다 -
navigator.geolocation
HTML 내비게이터 위치 정보 속성의 예를 살펴보겠습니다. -
예시
<!DOCTYPE html> <html> <style> body { color: #000; height: 100vh; background: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%) no-repeat; text-align: center; } .btn { background: #db133a; border: none; height: 2rem; border-radius: 20px; width: 330px; display: block; color: #fff; outline: none; cursor: pointer; margin: 1rem auto; } .show { font-size: 1.2rem; color: #fff; } </style> <body> <h1>HTML navigator geolocation property Demo</h1> <button class="btn" onclick="display()">Display your position</button> <div class="show"></div> <script> function display() { var userLocation = navigator.geolocation; userLocation.getCurrentPosition(displayPosition); } function displayPosition(pos) { document.querySelector(".show").innerHTML = "<p>Your latitude coordinate is: " + pos.coords.latitude + "</p>" + "<p>Your longitude coordinate is: " + pos.coords.longitude + "</p>" } </script> </body> </html>
출력
"내 위치 표시를 클릭합니다. ” 버튼으로 사용자의 위치 좌표 표시 -