vue2leaflet 窗口变化 地图大小跟随变化

两盒软妹~` 提交于 2020-04-24 12:51:43

this.map.invalidateSize  这方法 在vue2-leaflet没有找到。后面通过给L-map加key  窗口变化时,组件重新加载啦。

mounted() {
    window.onresize = debounce(this.mapResize, 300, true);
},
methods: {
    //窗口变化
    mapResize() {
      this.mapHeight =
        document.documentElement.clientHeight -
        20 -
        this.$refs.fullmap.getBoundingClientRect().top;

      this.key = +new Date();
    },
}

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!