Skip to content

Instantly share code, notes, and snippets.

@codeguy
Created September 24, 2013 18:33
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save codeguy/6689215 to your computer and use it in GitHub Desktop.
Save codeguy/6689215 to your computer and use it in GitHub Desktop.
Get user's current gelocation with HTML Geolocation API
if ('geolocation' in navigator) {
console.log('Supports HTML geolocation API');
(function () {
var onSuccess = function (location) {
console.log('User location', location);
var userLat = location.coords.latitude,
userLon = location .coords.longitude;
},
onError = function (code, message) {
console.log('Gelocation error', code, message);
};
navigator.geolocation.getCurrentPosition(onSuccess, onError);
})();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment