huilderX 2.6.9
map组件每次缩放之后getScale获取的缩放等级不正确,我是在regionchange的type="end"的时候调用的getScale
代码:
<map id="myMap" @regionchange="regionchange" ></map>
js:
onReady() {
let that=this;
this.map=uni.createMapContext('myMap',this);
},
methods:{
regionchange:function(e){
let that=this;
if(e.type=='end'){
this.map.getScale({
success:function(res){
console.log(res.scale)
}
})
}
},
}
lowling
请问这个问题解决了没,现在都2023年了,还是有这个问题
2023-05-12 14:40