Advertisement
lessientelrunya

geolocation

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