Leaflet map not displayed properly inside tabbed panel

前端 未结 2 601
慢半拍i
慢半拍i 2020-12-01 05:12

I\'m trying to use Leaflet.js to display a map inside a tabbed panel from Twitter Bootstrap, but is behaving in a strange way:

When I click on the tab containing th

2条回答
  •  臣服心动
    2020-12-01 05:48

    Bootstrap 3 has custom namespaced events, and so previous answers would work with:

    $("body").on("shown.bs.tab", "#link3", function() {
        map.invalidateSize(false);
    });
    

    Reference: Bootstrap Tabs

提交回复
热议问题