window.onload = function () {
changeDivHeight();
}
//當瀏覽器窗口大小改變時,設置顯示內容的高度
window.onresize = function () {
changeDivHeight();
}
function changeDivHeight() {
var h = document.body.clientHeight;//獲取頁面可見高度
document.getElementById("RiskMapDiv").style.height = h - 76 - 65 - 20 + "px";
// 每次窗口大小改變后調用這個方法
map.invalidateSize(true);
}