Skip to content

Instantly share code, notes, and snippets.

@alihanekiz
Created January 13, 2018 16:26
Show Gist options
  • Save alihanekiz/be473f528c5ffc6873c4576d2c17135e to your computer and use it in GitHub Desktop.
Save alihanekiz/be473f528c5ffc6873c4576d2c17135e to your computer and use it in GitHub Desktop.
get location inside of a browser.
(that => {
navigator.geolocation.getCurrentPosition(pos => {
console.log(pos);
});
})(this);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment