Skip to content

Instantly share code, notes, and snippets.

@ThomRoman
Last active August 29, 2019 22:03
Show Gist options
  • Save ThomRoman/62163c8f95a1df453f4347d989a0ec07 to your computer and use it in GitHub Desktop.
Save ThomRoman/62163c8f95a1df453f4347d989a0ec07 to your computer and use it in GitHub Desktop.
const coords = navigator.geolocation.getCurrentPosition(position=>{
console.log(position)
let coord = position.coords
let lat = coord.latitude
let long = coord.longitude
console.log(lat,long)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment