Skip to content

Instantly share code, notes, and snippets.

@niraj-shah
Created January 4, 2013 11:19
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save niraj-shah/4451840 to your computer and use it in GitHub Desktop.
JS Code to get Location using Google Maps
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(success, error);
} else {
error('not supported');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment