我想要显示一条警告说"请打开你的GPS"。
如何使用phonegap获取GPS状态?
我使用了以下代码,但如果关闭GPS,我就不会收到任何提醒信息。相反,没有任何事情发生。
<!DOCTYPE html>
<html>
<head>
<title>Device Properties Example</title>
<script type="text/javascript" charset="utf-8" src="cordova.js"></script>
<script type="text/javascript" charset="utf-8">
// Wait for device API libraries to load
//
document.addEventListener("deviceready", onDeviceReady, false);
// device APIs are available
//
function onDeviceReady() {
var test= navigator.geolocation.getCurrentPosition(onSuccess, onError);
}
// onSuccess Geolocation
//
function onSuccess(position) {
var element = document.getElementById('geolocation');
element.innerHTML = 'Latitude: ' + position.coords.latitude + '<br />' +
'Longitude: ' + position.coords.longitude + '<br />' +
'Altitude: ' + position.coords.altitude + '<br />' +
'Accuracy: ' + position.coords.accuracy + '<br />' +
'Altitude Accuracy: ' + position.coords.altitudeAccuracy + '<br />' +
'Heading: ' + position.coords.heading + '<br />' +
'Speed: ' + position.coords.speed + '<br />' +
'Timestamp: ' + position.timestamp + '<br />';
}
// onError Callback receives a PositionError object
//
function onError(error) {
alert('code: ' + error.code + '\n' +
'message: ' + error.message + '\n');
}
</script>
</head>
<body>
<p id="geolocation"> Finding geolocation...</p>
</body>
</html>
答案 0 :(得分:21)
假设我们只讨论Android平台,正如@Joerg正确地说的那样,您可以使用cordova.plugins.diagnostic检查是否使用isGpsLocationEnabled()
启用了GPS:
cordova.plugins.diagnostic.isGpsLocationEnabled(function(enabled){
console.log("GPS location is " + (enabled ? "enabled" : "disabled"));
}, function(error){
console.error("The following error occurred: "+error);
});
如果结果是GPS已关闭,您可以将用户切换到位置设置页面以手动启用GPS:
cordova.plugins.diagnostic.switchToLocationSettings();
或者,此外,您可以使用cordova-plugin-request-location-accuracy直接在应用内请求高精度定位模式(即GPS)。这将显示原生确认对话框,如果用户同意,将自动启用GPS:
function onRequestSuccess(success){
console.log("Successfully requested accuracy: "+success.message);
}
function onRequestFailure(error){
console.error("Accuracy request failed: error code="+error.code+"; error message="+error.message);
if(error.code !== cordova.plugins.locationAccuracy.ERROR_USER_DISAGREED){
if(window.confirm("Failed to automatically set Location Mode to 'High Accuracy'. Would you like to switch to the Location Settings page and do this manually?")){
cordova.plugins.diagnostic.switchToLocationSettings();
}
}
}
cordova.plugins.locationAccuracy.request(onRequestSuccess, onRequestFailure, cordova.plugins.locationAccuracy.REQUEST_PRIORITY_HIGH_ACCURACY);
答案 1 :(得分:2)
您的问题的答案是 。
如果gps已启用,则无法检查*
您可以设置超时并获得超时。
您可以通过在geolocationoptions参数中设置timeout
参数来执行此操作。 (你没用过)
navigator.geolocation.getCurrentPosition
或geolocation.watchPosition
到执行相应的geolocationSuccess
回调的最长时间(毫秒) 。如果在此时间内未调用geolocationSuccess
回调,则geolocationError
回调将传递PositionError.TIMEOUT
错误代码。 (请注意,与geolocation.watchPosition
一起使用时,geolocationError
回调可以每隔timeout
毫秒调用一次!)(数字) 现在有一个插件可以检查GPS是否已打开。
事实上,不止一个。
答案 2 :(得分:2)
检查GPS,Wifi,...是否已启用的最佳方法是使用此插件:
https://www.npmjs.com/package/cordova.plugins.diagnostic
使用此插件,您可以检查许多功能,并可以将用户切换到设置。