js:
map: function (options){
wx.getLocation({//获取当前经纬度
type: 'wgs84',
success: function (res) {
wx.openLocation({
latitude: res.latitude
longitude: res.longitude
})
}
})
console.log(options)
}
wxml:
<view><button bindtap="map">map</button></view>
app.json:
"permission": {
"scope.userLocation": {
"desc": "你的位置信息将用于小程序位置接口的效果展示"
}
},
Console:
有错误信息吗?
wx.getLocation 为何不加个 fail ? 看下有没有走 fail