Skip to content

Instantly share code, notes, and snippets.

@courtsimas
Created April 9, 2012 14:36
Show Gist options
  • Save courtsimas/2343884 to your computer and use it in GitHub Desktop.
Save courtsimas/2343884 to your computer and use it in GitHub Desktop.
navigator.geolocation.getCurrentPosition(locationSuccess, locationFail);
function locationSuccess(position) {
latitude = position.coords.latitude;
longitude = position.coords.longitude;
}
function locationFail() {
alert(‘Oops, could not find you.’);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment