下一章 上一章 目录 设置
5、第 5 章 记一次小程 ...
-
//打开地图
openmap() {
// 错误格式
//this.dataInfo.latitude = 117.00//这是纬度!这是纬度!这是纬度!纬度不会超过90
//this.dataInfo.longitude = 36.70
// 正确格式
this.dataInfo.latitude = 36.70
this.dataInfo.longitude = 117.00
this.dataInfo.name = \"XXX一店(缤纷五洲店)\"
this.dataInfo.position = \"xxxxxxxxx\"
uni.openLocation({
latitude: this.dataInfo.latitude,
longitude: this.dataInfo.longitude,
name: this.dataInfo.name,
address: this.dataInfo.position
})
},
//太傻B了