Perhaps try adding navbar-fixed-top to your navbar class.
<div class="navbar navbar-fixed-top"> <nav bar stuff......> </div>
If you do not want the navbar to be above the map, set #mapcanvas like this (works before IE7 - did not try ie6)
html,body {width:100%;height:100%;margin:0;padding:0;} #mapcanvas { background:red;display: block; position:absolute; height:auto; bottom:0; top:0; left:0; right:0; margin-top:50px; }
<div id="mapcanvas">asdf</div>
source share