Skip to content

Instantly share code, notes, and snippets.

@andreafortuna
Created May 16, 2016 15:21
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 andreafortuna/4cf3dd2e2808c9a3d0814e375f6ac03a to your computer and use it in GitHub Desktop.
Save andreafortuna/4cf3dd2e2808c9a3d0814e375f6ac03a to your computer and use it in GitHub Desktop.
Geolocating with a single javascript line
if( navigator.geolocation ) navigator.geolocation.getCurrentPosition( function( location ) {console.log( location.coords.latitude, location.coords.longitude );}, function( message ) { console.log( message );});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment