Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. var getLocation = function(){
  2.  
  3. if ("geolocation" in navigator){
  4. const pos = navigator.geolocation.getCurrentPosition();
  5.  
  6. let x = pos.coords.latitude;
  7. let y = pos.coords.longitude;
  8. return [x,y];
  9. };
  10. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement