uni-app uni.getLocation和map动态绑定
2020-12-19 本文已影响0人
吃肉肉不吃肉肉
首先在template里写一个map标签
<map :latitude="latitude" :longitude="longitude" :scale="scale""></map>
在return里定义变量latitude longitude scale
data(){
return{
longitude:"",
latitude:"",
scale:8
}
}
在生命周期onShow(){}里获取当前位置并赋值
onShow() {
var that =this
uni.getLocation({
type: 'wgs84',
success: function (res) {
console.log('当前位置的经度:' + res.longitude);
console.log('当前位置的纬度:' + res.latitude);
that.latitude=res.latitude
that.longitude=res.longitude
}
});