Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>location</title>
  5. </head>
  6. <body>
  7. <script type="text/javascript">
  8.  
  9. navigator.geolocation.getCurrentPosition(function(position){
  10. document.write("latitude= " + position.coords.latitude);
  11. document.write("longitude= " + position.coords.longitude);
  12. });
  13. </script>
  14. </body>
  15. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement