Skip to content

Instantly share code, notes, and snippets.

@0mg
Created July 2, 2010 13:50
Show Gist options
  • Select an option

  • Save 0mg/461386 to your computer and use it in GitHub Desktop.

Select an option

Save 0mg/461386 to your computer and use it in GitHub Desktop.
Geolocation
javascript: navigator.geolocation.getCurrentPosition(function(p) {
location.href = "http://maps.google.com/maps?q=" +
p.coords.latitude + "," + p.coords.longitude; });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment