wx.startLocationUpdate(Object object)

小程序框架2.0.7版本开始支持

Promise 风格 调用:支持

开启持续定位

参数

Object object

属性 类型 默认值 必填 说明
scanSpan number 1000 定位刷新间隔(单位毫秒),不小于1000
type string 支持wgs84、gcj02、bd09ll(bd09ll需集成百度,gcj02需集成百度或腾讯)
isHighAccuracy boolean 是否开启高精度
success function 接口调用成功的回调函数
fail function 接口调用失败的回调函数
complete function 接口调用结束的回调函数(调用成功、失败都会执行)

非必填参数类型错误将会直接忽略。

示例代码

wx.startLocationUpdate({
success: (data)=>{
console.log(data)
}
})