wx
.
onLocationChange
(
function
(
res
)
{
if
(
res
.
errMsg
==
"auto:location:report:ok"
){
var
latitude
=
res
.
latitude
;
// 纬度,浮点数,范围为90 ~ -90
var
longitude
=
res
.
longitude
;
// 经度,浮点数,范围为180 ~ -180。
var
speed
=
res
.
speed
;
// 速度,以米/每秒计
var
accuracy
=
res
.
accuracy
;
// 位置精度
var
lbsIndex
=
0
;
}
else
{
//错误处理
}
}
);
你好,不能调用是指什么,报错还是无响应,能否截图看看
wx.invoke('startAutoLBS',{
type: 'gcj02', // wgs84是gps坐标,gcj02是火星坐标
},
function(res) {
if(res.err_msg == "startAutoLBS:ok"){
//调用成功
}else {
//错误处理
}
});
{type: "wgs84",continue: "1"},
function(res) {
alert(JSON.stringify(res));
});
wx.onLocationChange(
function(res) {
app_log(JSON.stringify(res));
}
); 这样试下