Advertisement
Guest User

Untitled

a guest
Jul 19th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="pt-br">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <script>
  6.  
  7. var options = {
  8. enableHighAccuracy: true,
  9. timeout: 5000,
  10. maximumAge: 0
  11. };
  12.  
  13. function success(pos) {
  14. var crd = pos.coords;
  15.  
  16. console.log('Sua posição atual é:');
  17. console.log('Latitude : ' + crd.latitude);
  18. console.log('Longitude: ' + crd.longitude);
  19. console.log('Mais ou menos ' + crd.accuracy + ' metros.');
  20. };
  21.  
  22. function error(err) {
  23. console.warn('ERROR(' + err.code + '): ' + err.message);
  24. };
  25.  
  26. navigator.geolocation.getCurrentPosition(success, error, options);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement