wx.getLocation
接口用来获取用户当前的位置信息,包括
- 纬度坐标
- 海拔高度
- 移动速度等
www.getLocation
的参数说明
调用wx.getLocation接口,从success回调函数里获取到的位置信息如表4.16所示
wx.getLocation返回数据说明
index.wxml
<view>
<button bindtap='getLocation'>获取当前位置</button>
</view>
index.js
Page({
getLocation: function(){
wx.getLocation({
type: 'wgs84',
altitude:true,
success(res) {
const latitude = res.latitude
const longitude = res.longitude
const speed = res.speed
const accuracy = res.accuracy
const altitude = res.altitude
console.log("纬度:",latitude)
console.log("经度:", longitude)
console.log("移动速度:", speed)
console.log("位置精度:", accuracy)
console.log("高度", altitude)
}
})
}
})
使用真机调试,调试器控制台输出结果如图4.11所示