Skip to main content
Version: 下个版本

Taro.openLocation(option)

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

支持情况:

参考文档

类型

(option: Option) => Promise<TaroGeneral.CallbackResult>

参数

参数类型
optionOption

Option

参数类型必填说明
latitudenumber纬度,范围为-90~90,负数表示南纬。使用 gcj02 国测局坐标系
longitudenumber经度,范围为-180~180,负数表示西经。使用 gcj02 国测局坐标系
addressstring地址的详细说明
complete(res: TaroGeneral.CallbackResult) => void接口调用结束的回调函数(调用成功、失败都会执行)
fail(res: TaroGeneral.CallbackResult) => void接口调用失败的回调函数
namestring位置名
scalenumber缩放比例,范围5~18
success(res: TaroGeneral.CallbackResult) => void接口调用成功的回调函数

示例代码

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