考慮してください:http://jsfiddle.net/msNs5/3/
ページの読み込み時にフルサイズに拡張するマップdivと、その下部をカバーする別の半透明のdivがあります。美的には、下のdivが背後のマップでどのように見えるかが本当に気に入っていますが、透明なdivでカバーされていない領域が「アクティブ」領域になるようにする必要があります。
IEは、マップがマーカーとポリゴンの境界を計算してそのビューを設定すると、マップ全体ではなく、その露出領域に計算されます。人々はこれが可能だと思っているようですが、私は実際の実装に苦労しています。
フィドルからのコードは以下のとおりです。
// JavaScript
var map = L.map('map', { center: [51.505, -0.09], zoom: 13 });
osm = L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png', {});
map.addLayer(osm);
function initMap() {
$('#map').css({"height": $(window).height() + "px"});
map.setView(map.getCenter(),map.getZoom());
}
var id;
$(window).resize(function() {
clearTimeout(id);
id = setTimeout(initMap, 500);
});
$('#map').css({"height": $(window).height() + "px"});
map.setView(map.getCenter(),map.getZoom());
/* CSS */
#map { position: fixed; z-index: -1; width: 100%; }
#header { height: 40px; background: black; }
#otherstuff { position: fixed; bottom: 0px; width: 100%; background-color: rgba(255,255,255,0.6); height: 30%; }
<!-- HTML --->
<!DOCTYPE html>
<body>
<div id="header"></div>
<div id="map"></div>
<div id="otherstuff">xxx</div>
</body>