我想检查我的corodva角度应用程序中是否启用了GPS,如果它已被禁用,则会出现弹出通知以提供启用它的选项。与本机应用程序的功能类似。
有人能举例说明如何使其发挥作用吗?
答案 0 :(得分:2)
您可以使用此插件
cordova插件添加cordova.plugins.diagnostic
具有以下方法来检查设备gps设置,
cordova.plugins.diagnostic.isLocationEnabled(function(enabled){
console.log("Location is " + (enabled ? "enabled" : "disabled"));},
function(error){
console.error("The following error occurred:"+error);
});
有关详细信息,请click here