如果设备有GPS硬件,我们可以使用没有互联网连接的JavaScript获取GPS位置吗?
请注意谁将其标记为重复
我需要javascript才能在没有互联网连接的情况下工作,并使用GPS硬件来确定位置。
答案 0 :(得分:1)
Javascript可以通过navigator.geolocation
向您显示地理位置。
function getLocation()
{
if (navigator.geolocation)
navigator.geolocation.getCurrentPosition(showPosition);
else
console.log("Geolocation is not supported by this browser");
}
function showPosition(position)
{
console.log("Latitude: " + position.coords.latitude);
console.log("Longitude: " + position.coords.longitude);
}