Leaflet map not showing properly in bootstrap 3.0 modal

后端 未结 7 1562
迷失自我
迷失自我 2020-12-03 07:47

i have a big problem. i want to open a leaflet map in a modal. but the map is not showing properly. the tiles are not loading.

here is the script:

http://boo

7条回答
  •  执笔经年
    2020-12-03 07:57

    This works for me, you can read here

    map.whenReady(() => {
        console.log('Map ready');
        setTimeout(() => {
            map.invalidateSize();
        }, 0);
    });
    

提交回复
热议问题