我想讓地圖全屏打開。我已經試過這樣:全屏地圖顯示不正確
<div class="b-firm-map-content" id="map"></div>
<a href="#" onclick="test2();return false;" >full screen</a>
function test2(){
var width = $(window).width()-3;
var height = $(window).height();
$('#map').css({
'width': width,
'height': height - 40 ,
'position': 'absolute ',
'z-index' : '900'
});
}
,但它會導致:
- http://pixs.ru/showimage/Snimokpng_5811285_6065704.png
- http://pixs.ru/showimage/Snimok1png_4265065_6065745.png
我的地圖顯示不全。