Get Location From Device On Website

[Solved] Get Location From Device On Website | Shell - Code Explorer | yomemimo.com
Question : get location from device on website

Answered by : ajay-kumar-q493ftlvhwo8

if (navigator.geolocation) { // device can return its location navigator.geolocation.getCurrentPosition(function(position) { console.log(position.coords.latitude); console.log(position.coords.longitude); });
}

Source : https://stackoverflow.com/questions/9395547/determining-the-location-of-mobile-web-site-user | Last Update : Sat, 03 Sep 22

Answers related to get location from device on website

Code Explorer Popular Question For Shell