HTML DOM Geolocation coordinates Property Last Updated : 14 Jun, 2023 Comments Improve Suggest changes Like Article Like Report The DOM Geolocation coordinates Property in HTML is used to return the position and altitude of the device on Earth. The returned Coordinates object could be used for various purposes including navigation and tracking the position of the device. Property Values: ValuesDescriptioncoordinates.latitudeThis is the device latitude in decimal degrees.coordinates.longitudeThis is the device longitude in decimal degrees.coordinates.accuracyThis is the accuracy of the latitude and longitude returned in meters.coordinates.altitudeThis is the device altitude relative to the sea level in meters.coordinates.altitudeAccuracyThis is the accuracy of the altitude returned in meters.coordinates.headingThis is the direction in which the device is traveling. The value is in degrees and indicates the current direction with respect to true north. This value may be null.coordinates.speedThis is the velocity of the device in meters per second. The value may be null if the device is not traveling. Usage: Methods like getCurrentPosition() or watchPosition() are used to pass a callback to a function and then access the coordinates property. Example: html <!DOCTYPE html> <html> <title>DOM Geolocation coordinates Property</title> <body> <h1 style="color: green">GeeksforGeeks</h1> <b>DOM Geolocation coordinates Property</b> <p>Click the button to get your coordinates.</p> <button onclick="getLocation()">Get Location</button> <p class="location"></p> <script> let x = document.querySelector('.location'); function getLocation() { /* Check if location support is available */ if (navigator.geolocation) { /* Callback to the showPosition function */ navigator.geolocation.getCurrentPosition( showPosition); } else { x.innerHTML = "Geolocation is not supported."; } } function showPosition(position) { /* Assign the Coordinates object to a variable */ let coordinatesObject = position.coords; x.innerHTML = "Accuracy: " + /* Get the accuracy from the Coordinates object */ coordinatesObject.accuracy + "<br>Latitude: " + /* Get the latitude from the Coordinates object */ coordinatesObject.latitude + "<br>Longitude: " + /* Get the longitude from the Coordinates object */ coordinatesObject.longitude + "<br>Altitude: " + /* Get the altitude from the Coordinates object */ coordinatesObject.altitude + "<br>Altitude Accuracy: " + /* Get the altitude accuracy from the Coordinates object */ coordinatesObject.altitudeAccuracy + "<br>Speed: " + /* Get the speed from the Coordinates object */ coordinatesObject.speed + "<br>Heading: " + /* Get the heading from the Coordinates object */ coordinatesObject.heading; } </script> </body> </html> Output: Before clicking the button: After clicking the button: Supported Browsers: The browser supported by DOM Geolocation coordinates property are listed below: Google Chrome 79 and aboveEdge 79 and aboveFirefox 72 and aboveInternet Explorer 9.0 and aboveOpera 16 and aboveSafari 13.1 and above Create Quiz Comment S sayantanm19 Follow 0 Improve S sayantanm19 Follow 0 Improve Article Tags : Web Technologies HTML HTML-DOM Explore HTML BasicsHTML Introduction4 min readHTML Editors4 min readHTML Basics7 min readStructure & ElementsHTML Elements4 min readHTML Attributes7 min readHTML Headings3 min readHTML Paragraphs3 min readHTML Text Formatting4 min readHTML Block and Inline Elements3 min readHTML Charsets4 min readListsHTML Lists3 min readHTML Ordered Lists5 min readHTML Unordered Lists4 min readHTML Description Lists3 min readVisuals & MediaHTML Colors11 min readHTML Links Hyperlinks2 min readHTML Images7 min readHTML Favicon4 min readHTML Video4 min readLayouts & DesignsHTML Tables9 min readHTML Iframes4 min readHTML Layout4 min readHTML File Paths3 min readProjects & Advanced TopicsHTML Forms4 min readHTML5 Semantics5 min readHTML URL Encoding4 min readHTML Responsive Web Design11 min readTop 10 Projects For Beginners To Practice HTML and CSS Skills8 min readTutorial ReferencesHTML Tags - A to Z List5 min readHTML Attributes Complete Reference8 min readHTML Global Attributes5 min readHTML5 Complete Reference8 min readHTML5 MathML Complete Reference3 min readHTML DOM Complete Reference15+ min readHTML DOM Audio/Video Complete Reference2 min readSVG Element Complete Reference5 min readSVG Attribute Complete Reference8 min readSVG Property Complete Reference7 min readHTML Canvas Complete Reference4 min read Like