Loading [MathJax]/jax/output/HTML-CSS/fonts/TeX/fontdata.js
Home  • Programming • HTML5

Geolocation using HTML5

The HTML5 Geolocation API is used to get the geographical position of a user. Since this can compromise user privacy, the position is not available unless the user approves it. Use the getCurrentPosition() method to get the user's position. The example below is a simple Geolocation example returning the latitude and longitude of the user's position: Example
  1.  
  2. <script>
  3. var x=document.getElementById("demo");
  4. function getLocation()
  5. {
  6. if (navigator.geolocation)
  7. {
  8. navigator.geolocation.getCurrentPosition(showPosition);
  9. }
  10. else{x.innerHTML="Geolocation is not supported by this browser.";}
  11. }
  12. function showPosition(position)
  13. {
  14. x.innerHTML="Latitude: " + position.coords.latitude +
  15. "<br>Longitude: " + position.coords.longitude;
  16. }
  17. </script>
  18.  
Example explained: Check if Geolocation is supported If supported, run the getCurrentPosition() method. If not, display a message to the user If the getCurrentPosition() method is successful, it returns a coordinates object to the function specified in the parameter ( showPosition ) The showPosition() function gets the displays the Latitude and Longitude

Comments 1


Thanks vai... natun topics shiklam
About Author
Suman  Chowdhury
Copyright © 2025. Powered by Intellect Software Ltd