Leaflet map not showing properly in bootstrap 3.0 modal

后端 未结 7 1565
迷失自我
迷失自我 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 08:18

    I use this workaround:

    .modal {
      visibility: hidden;
      display: block;
    }
    
    .modal[aria-hidden='false'] {
      visibility: visible;
      display: block;
    }
    

提交回复
热议问题