2015-06-26 45 views
0

在引導程序3中,我想在地圖上顯示Google地圖和引導面板。Bootstrap:如何在Google地圖上顯示面板

所以我有以下HTML部分:

<div class="container-fluid"> 
    <div id="map-canvas" style="width:100%"; height:"100vh";></div> 
    <div class="panel col-md-2 col-md-offset-10"> 
     .... 
     .... 
    <div> 
</div> 

面板反正是顯示下面的地圖,而不是在地圖。

有什麼問題?

+0

您是否使用自定義的CSS或只是這個開箱即用的引導代碼使用的是? – crazymatt

+1

vh無法在safari移動設備上運行,更好地使用絕對定位和'top:0; left:0; right:0; bottom:0;'爲'#map-canvas' – cari

回答

0

自定義的CSS,例如

.container-fluid{ 
    position: relative; 
} 
#map-canvas{ 
    position: absolute; 
    top: 0; 
    right: 0; 
    z-index: 1; 
} 
.panel{ 
    z-index: 2; 
}