Skip to content

Instantly share code, notes, and snippets.

@dristic
dristic / 1.js
Last active January 20, 2022 18:46 — forked from ToeJamson/1.js
navigator.geolocation.getCurrentPosition(function (position) {
console.log(“I am located at: “ + position.coords.latitude + “, “ + position.coords.longitude);
});
navigator.geolocation.watchPosition(function (position) {
console.log(“I am now located at: “ + position.coords.latitude + “, “ + position.coords.longitude);
});