获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
速度变化一直是0和-1这是为啥求大哥大姐们解答
uni.onLocationChange(FUNCTION CALLBACK)获取速度变化信息?uni.startLocationUpdate({ success: res => { console.log(res,'开启位置变化监听'); }, fail: err => console.error('开启小程序接收位置消息失败:', err), complete: msg => console.log('调用开启小程序接收位置消息 API 完成') }); uni.onLocationChange(function(res){ console.log(res,'位置信息'); console.log(res.speed,'速度变化'); if(res.speed>1){ _this.locationChange=true }else{ _this.locationChange=false } })
04-02