一、wx.openLocation兼容
1、申请腾讯地图key
2、配置LBS SDK,选择SDK最新版本
3、调用接口,name和address必须输入,不然要报错
uni.openLocation({
latitude: Number(this.info.latitude),
longitude: Number(this.info.longitude),
name:this.info.meterAddress ? this.info.meterAddress : '--',
address:this.info.meterAddress ? this.info.meterAddress : '--',
success: (e) => {
console.log("openLocation-成功",e)
},
fail: (e) => {
console.log("openLocation-失败",e)
},
二、wx.getSystemInfoAsync兼容
同步获取数据为undefined,异步使用wx.getSystemInfo可以调通