/**
- 开始后台定位
*/
function startBGLocation() {
console.log("startBGLocation");
if (ldata.bgStatus == 1) {
return;
}
// 当前位置信息
const startLocationFun = function() {
uni.onLocationChange(function(res) {
//开启成功
ldata.bgStatus = 1;
console.log(res, "eee");
})
}
uni.startLocationUpdateBackground({
type: 'gcj02',
success: startLocationFun,
fail: (error) => {
//开启失败
_startBGLocationError(error);
}
})
uni.onLocationChangeError((error) => {
_onLocationChangeError(error);
})
}
1 个回复
3***@qq.com
你这个是微信小程序的 app的是这个吧uni.startLocationUpdate