我正在使用离子框架处理设备跟踪功能。
https://github.com/transistorsoft/cordova-background-geolocation-SampleApp
我在上面尝试过..在Android kitkat上工作正常...它不能与lollipop一起使用..因为 1(权限被拒绝)会抛出错误代码。
答案 0 :(得分:0)
你可以使用cordova地理定位插件
使用此代码安装
cordova plugin add cordova-plugin-geolocation
并使用此代码
var posOptions = {timeout: 10000, enableHighAccuracy: false};
$cordovaGeolocation
.getCurrentPosition(posOptions)
.then(function (position) {
var lat = position.coords.latitude
var long = position.coords.longitude
}, function(err) {
// error
});