Leaflet map not showing properly in bootstrap 3.0 modal

后端 未结 7 1534
迷失自我
迷失自我 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;
    }
    
    0 讨论(0)
提交回复
热议问题