微信小程序开发文档 微信小程序API 查看位置

2024-02-25 开发教程 微信小程序开发文档 匿名 5

wx.getLocation(OBJECT)


获取当前的地理位置、速度。当用户离开小程序后,此接口无法调用;当用户点击“显示在聊天顶部”时,此接口可继续调用。

OBJECT参数说明:

参数类型必填说明
typeString默认为 wgs84 返回 gps 坐标,gcj02 返回可用于wx.openLocation的坐标
successFunction接口调用成功的回调函数,返回内容详见返回参数说明。
failFunction接口调用失败的回调函数
completeFunction接口调用结束的回调函数(调用成功、失败都会执行)

success返回参数说明:

参数说明最低版本
latitude纬度,浮点数,范围为-90~90,负数表示南纬
longitude经度,浮点数,范围为-180~180,负数表示西经
speed速度,浮点数,单位m/s
accuracy位置的精确度
altitude高度,单位 m1.2.0
verticalAccuracy垂直精度,单位 m(Android 无法获取,返回 0)1.2.0
horizontalAccuracy水平精度,单位 m1.2.0

示例代码:

wx.getLocation({
type: 'wgs84',
success: function(res) {
var latitude = res.latitude
var longitude = res.longitude
var speed = res.speed
var accuracy = res.accuracy
}
})

wx.chooseLocation(OBJECT)


打开地图选择位置。

需要用户授权 scope.userLocation

OBJECT参数说明:

参数类型必填说明
successFunction接口调用成功的回调函数,返回内容详见返回参数说明。
failFunction接口调用失败的回调函数
completeFunction接口调用结束的回调函数(调用成功、失败都会执行)

success返回参数说明:

参数说明
name位置名称
address详细地址
latitude纬度,浮点数,范围为-90~90,负数表示南纬
longitude经度,浮点数,范围为-180~180,负数表示西经

wx.openLocation(OBJECT)


​使用微信内置地图查看位置。

需要用户授权 scope.userLocation

OBJECT参数说明:

参数类型必填说明
latitudeFloat纬度,范围为-90~90,负数表示南纬
longitudeFloat经度,范围为-180~180,负数表示西经
scaleINT缩放比例,范围5~18,默认为18
nameString位置名
addressString地址的详细说明
successFunction接口调用成功的回调函数
failFunction接口调用失败的回调函数
completeFunction接口调用结束的回调函数(调用成功、失败都会执行)

示例代码:

wx.getLocation({
type: 'gcj02', //返回可以用于wx.openLocation的经纬度
success: function(res) {
var latitude = res.latitude
var longitude = res.longitude
wx.openLocation({
latitude: latitude,
longitude: longitude,
scale: 28
})
}
})

Bug & Tip

  1. bug: iOS6.3.30type 参数不生效,只会返回 wgs84 类型的坐标信息