美文网首页
uni-app uni.getLocation和map动态绑定

uni-app uni.getLocation和map动态绑定

作者: 吃肉肉不吃肉肉 | 来源:发表于2020-12-19 09:20 被阅读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
                    }
                });
    

    相关文章

      网友评论

          本文标题:uni-app uni.getLocation和map动态绑定

          本文链接:https://www.haomeiwen.com/subject/umuqnktx.html