Skip to content

Instantly share code, notes, and snippets.

@refo
Created November 15, 2016 18:14
Show Gist options
  • Save refo/05a1058bbb1b23c5e53968e05c03c6c9 to your computer and use it in GitHub Desktop.
Save refo/05a1058bbb1b23c5e53968e05c03c6c9 to your computer and use it in GitHub Desktop.
Javascript GeoLocation
navigator.geolocation.getCurrentPosition(function(geopos){
var coords = geopos.coords;
console.log('https://maps.google.com/?q='+coords.latitude+','+coords.longitude);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment