Skip to content

Instantly share code, notes, and snippets.

@whyisjake
Created April 3, 2013 23:35
Show Gist options
  • Save whyisjake/5306449 to your computer and use it in GitHub Desktop.
Save whyisjake/5306449 to your computer and use it in GitHub Desktop.
Get's the GPS location from the browser.
navigator.geolocation.getCurrentPosition(GetLocation);
function GetLocation(location) {
alert(location.coords.latitude);
alert(location.coords.longitude);
alert(location.coords.accuracy);
console.log(location);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment