微信小程序--wx:openLocation的坑
宓季同
2023-12-01
微信小程序--wx:openLocation的坑
微信小程序api中没有详细介绍wx:openLocation的坑
错误写法:仅支持android,不支持iso
gotothere:function(e){
wx.openLocation({
latitude: e.currentTarget.dataset.yaxis,
longitude: e.currentTarget.dataset.xaxis,
name: e.currentTarget.dataset.title,
scale: 28
})
},
正确写法:
gotothere:function(e){
wx.openLocation({
latitude: Number(e.currentTarget.dataset.yaxis),
longitude: Number(e.currentTarget.dataset.xaxis),
name: e.currentTarget.dataset.title,
scale: 28
})
},