在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
在 app.json 里面增加 permission 属性配置(小游戏需在game.json中配置): "permission": { "scope.userLocation": { "desc": "您的位置信息将用于地图展示" } } index.wxml: <view> <!--点击跳转到地图--> <button bindtap="map">定位</button> <!--直接打开地图--> <map ></map> </view> index.js: Page({ data: { }, map: function () { 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 }) } }) } })
|
请发表评论