Skip to content

Instantly share code, notes, and snippets.

@matt-west
Created March 31, 2014 14:42
Show Gist options
  • Save matt-west/9893937 to your computer and use it in GitHub Desktop.
Save matt-west/9893937 to your computer and use it in GitHub Desktop.
navigator.geolocation.getCurrentPosition(function(position) {
// Get the positioning coordinates.
var lat = position.coords.latitude;
var lon = position.coords.longitude;
// Do something magical...
}, function() {
alert('Oops! An error occured.');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment