我正在使用jQuery Mobile和PHP开发应用程序。我没有使用Phonegap或其他框架。我需要找到用户的geolocation
。如果用户设备的GPS处于关闭状态,则无法获取位置。现在,我需要找到用户设备的GPS已打开或关闭。
这就是我现在使用的。
function getLocation() {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(showPosition);
} else {
x.innerHTML = "Geolocation is not supported by this browser.";
}
}
function showPosition(position) {
var lat=position.coords.latitude;
var long=position.coords.longitude;
}
最佳答案
您可以在加载时调用此函数
// Function to get location
function getLocation(){
navigator.geolocation.getCurrentPosition(function (pos) {
var lat = pos.coords.latitude;
var lng = pos.coords.longitude;
if (lat == null) {
alert("GPS not activated!");
} else {
alert("Latitude: "+ lat + " , Longitude: " + lng );
}
});
}
关于javascript - 检查用户设备的GPS是否打开,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27125922/