微信小程序-位置坐标
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序-位置坐标相关的知识,希望对你有一定的参考价值。
wx.getLocation(OBJECT)
获取当前的地理位置、速度。
OBJECT参数说明:
success返回参数说明:
示例代码:
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)
打开地图选择位置
OBJECT参数说明:
success返回参数说明:
wx.openLocation(OBJECT)
? 使用微信内置地图查看位置
OBEJCT参数说明:
示例代码:
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 }) } })
以上是关于微信小程序-位置坐标的主要内容,如果未能解决你的问题,请参考以下文章