rakesh830566

GeoLocation

Jan 17th, 2021
903
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. if (navigator.geolocation) {
  2.     navigator.geolocation.getCurrentPosition(showPosition);
  3. } else {
  4.     console.log('Not Supported');
  5. }
  6.  
  7. function showPosition(position) {
  8.     console.log(`Latitude: ${position.coords.latitude}\nLongitude: ${position.coords.longitude}`);
  9. }
  10.  
Advertisement
Add Comment
Please, Sign In to add comment