Skip to main content

使用内置地图查看位置

openLocation

tip

使用高德内置地图查看位置

参数说明

属性类型默认值是否必填描述
latitudenumber纬度,范围为-90~90,负数表示南纬。使用 gcj02 国测局坐标系
longitudenumber经度,范围为-180~180,负数表示西经。使用 gcj02 国测局坐标系
scalenumber18缩放比例,范围5~18
namestringfalse位置名
addressstringfalse地址的详细说明
successfunction接口调用成功的回调函数
failfunction接口调用失败的回调函数
completefunction接口调用结束的回调函数(调用成功、失败都会执行)

代码示例

function openLocation(latitude, longitude) {
dsBridge.call(
'openLocation',
{
latitude,
longitude,
scale: 18,
name: '聚鞋优品',
address: '浙江省温州市鹿城区双屿街道温州交运双屿物流中心行政楼2楼009号'
}
)
}