我有一個頁面上我使用引導,我添加了一個地圖(API v3)。谷歌地圖干擾Twitter的引導程序
它起初工作正常,但當我摺疊地圖 - 我無法重新打開它。
我已經看過類似的SO問題,但找不到解決這個問題的人。
我的HTML:
<div id="mapHeader" data-toggle="collapse" data-target="#map">
Header
</div>
<div id="map" class="collapse in">
<div id="map_canvas"></div>
</div>
CSS:
#map_canvas { height: 100% }
#map {height: 30em; width: 50%;max-height:100%;}
的Javascript只加載地圖。
Seems related, but I couldn't implement the same solution
嘗試在控制檯中觸發resize事件並查看是否修復了它:google.maps.event.trigger($('#map_canvas')[0],'resize')' – Oliver
Thanks @Oliver,but that沒有工作。 – JNF