位置
获取位置
wx.getLocation(object)
获取当前的地理位置、速度。当用户离开小程序后,此接口无法调用;当用户点击“显示在聊天顶部”时,此接口可继续调用
wx.getLocation({
type: 'wgs84',//默认为 wgs84 返回 gps 坐标,gcj02 返回可用于wx.openLocation的坐标
success: function(res) {
res.latitude//纬度,浮点数,范围为-90~90,负数表示南纬
res.longitude//经度,浮点数,范围为-180~180,负数表示西经
res.speed//速度,浮点数,单位m/s
res.accuracy//位置的精确度
res.altitude//高度,单位 m
res.verticalAccuracy//垂直精度,单位 m(Android 无法获取,返回 0)
res.horizontalAccuracy//水平精度,单位 m
},
fail/complete: function (res) {
//接口调用失败/结束的回调函数
}
})
wx.chooseLocation(object)
打开地图选择位置。
需要用户授权 scope.userLocation
wx.chooseLocation({
type: 'wgs84',//默认为 wgs84 返回 gps 坐标,gcj02 返回可用于wx.openLocation的坐标
success: function(res) {
res.name//位置名称
res.address//详细地址
res.latitude//纬度,浮点数,范围为-90~90&