startAutoLBS() {
// 打开持续定位接口
// eslint-disable-next-line no-undef
wx.invoke('startAutoLBS', {
type: 'gcj02' // wgs84是gps坐标,gcj02是火星坐标
},
(res) => {
if (res.err_msg === 'startAutoLBS:ok') {
// 调用成功
console.log('startAutoLBS:ok: ', res)
this.recordTime = new Date()
this.recordLine = []
this.open = true
this.onLocationChange()
} else {
// 错误处理
}
})
},
stopAutoLBS() {
console.log('click stop')
// eslint-disable-next-line no-undef
wx.invoke('stopAutoLBS', {},
function(res) {
alert('stop .....')
if (res.err_msg === 'stopAutoLBS:ok') {
// 调用成功
} else {
// 错误处理
}
})
},
下面的alert没有打印
解决了嘛