Javascript Get Gps Location From The Web Browser

[Solved] Javascript Get Gps Location From The Web Browser | Shell - Code Explorer | yomemimo.com
Question : javascript get gps location

Answered by : xenophobic-xenomorph-abis54pyb0j5

const options = { enableHighAccuracy: true, timeout: 5000, maximumAge: 0
};
function success(pos) { const crd = pos.coords; console.log('Your current position is:'); console.log(`Latitude : ${crd.latitude}`); console.log(`Longitude: ${crd.longitude}`); console.log(`More or less ${crd.accuracy} meters.`);
}
function error(err) { console.warn(`ERROR(${err.code}): ${err.message}`);
}
navigator.geolocation.getCurrentPosition(success, error, options);
// iury.landin

Source : https://developer.mozilla.org/en-US/docs/Web/API/Geolocation/getCurrentPosition | Last Update : Tue, 21 Jun 22

Answers related to javascript get gps location from the web browser

Code Explorer Popular Question For Shell