赞
踩
uni.getLocation({
type: "wgs84", //返回可以用于 wx.openLocation 的经纬度
success(res) {
console.log(res);
const lat = res.latitude;
const lng = res.longitude;
}
});
app.json
里面加入 不然上线的时候审核不过
permission: {
"scope.userLocation": {
desc: "你的位置信息将用于小程序位置接口的效果展示"
}
},
requiredPrivateInfos: ["getLocation"]
Number
类型)例如:<view onTap='toAddress(item)'>去这里</view>
toAddress(item){
//此处item是 你获取到的当前点击的那一条数据 方法里面需要用到 名称 地址 经纬度
uni.openLocation({
latitude: Number(lat), //目标纬度
longitude: Number(lng), //目标经度
name: item.biz_address, //名称
address: item.biz_address, //地址
scale: 28
});
}
Markdown 图标 快捷键
撤销 Ctrl /⌘+Z
重做 Ctrl /⌘+Y
加粗 Ctrl /⌘+B
斜体 Ctrl /⌘+I
标题 Ctrl /⌘+Shift +H
有序列表 Ctrl /⌘+Shift +O
无序列表 Ctrl /⌘+Shift +U
待办列表 Ctrl /⌘+Shift +C
插入代码 Ctrl /⌘+Shift +K
插入链接 Ctrl /⌘+Shift +L
插入图片 Ctrl /⌘+Shift +G
查找 Ctrl /⌘+F
替换 Ctrl /⌘+G
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。