GPSDetector-插件GPSDetector-Android插件。
自动安装 (CLI):
$ cordova plugin add https://github.com/keshav-iitr/GPSDetector-Plugin.git
$ cordova prepare
如何使用:
document.addEventListener('deviceready', function() {
if (!window.GPSDetector) return;
window.GPSDetector(onGPSSuccess, onGPSError);
function onGPSSuccess(enabled) {
alert(enabled ? 'GPS is ON' : 'GPS is OFF');
}
function onGPSError(error) {
console.error('GPS Error: ', error);
}
});
暂无评论