wx.openLocation已设置经纬度,在模拟器中无法准确定位
//根据经纬度在地图上显示
openLocation:function(e){
console.log(“openLocation”+e)
var value=e.detail.value
wx.openLocation({
longitude: Number(value.longitude),
latitude: Number(value.latitude)
})
},