首页代码如下:
CopyRight:All Right Reserved 原创作者:HTML51.COM 微信小程序开发平台:51小程序
.js逻辑文件代码:
Page({ openMap:function(){ wx.getLocation({ type: 'gcj02', // 默认为 wgs84 返回 gps 坐标,gcj02 返回可用于 wx.openLocation 的坐标 success: function(res){ // success wx.openLocation({ latitude: res.latitude, // 纬度,范围为-90~90,负数表示南纬 longitude: res.longitude, // 经度,范围为-180~180,负数表示西经 scale: 28, // 缩放比例 }) } }) }})
效果图如下:
更多详解打开小程序如何打开微信自带的地图相关文章请关注PHP中文网!