/*
提前在您的app.json上加上这些代码
"permission": {
"scope.userLocation": {
"desc": "你的位置信息将用于地图中定位"
}
}
*/
wx.request({
url: 'https://apis.map.qq.com/ws/geocoder/v1/?key='+this.key+'&address='+address,
success: res => {
console.log(res) // 此处返回的就是城市名称
this.longitude= res.data.result.location.lng;
this.latitude = res.data.result.location.lat;
}
})
<div class="row">
<div style="width: 100%;margin: 0 auto;overflow: hidden;margin-left: 8%;">
<map :latitude="latitude" :longitude="longitude" :markers="covers"
style="margin-left: -16%;"></map>
</div>
</div>
本站资源均来自互联网,仅供研究学习,禁止违法使用和商用,产生法律纠纷本站概不负责!如果侵犯了您的权益请与我们联系!
转载请注明出处: 免费源码网-免费的源码资源网站 » 微信小程序 uniapp 腾讯地图的调用
发表评论 取消回复