Skip to content

Instantly share code, notes, and snippets.

@avand
Created July 27, 2016 01:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save avand/adc3eead8215d440eea8c80074ccf8a0 to your computer and use it in GitHub Desktop.
Save avand/adc3eead8215d440eea8c80074ccf8a0 to your computer and use it in GitHub Desktop.
navigator.geolocation.getCurrentPosition(displayCurrentPosition);
function displayCurrentPosition(position) {
var coords = position.coords;
console.log(coords.latitude, coords.longitude);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment