0

可能重复:
根据浏览器调整大小调整谷歌地图

所以通常使用 js api 的谷歌地图看起来像这样......

在此处输入图像描述

现在,如果我要刷新页面,打开开发人员工具,然后将开发人员工具放下一点,它看起来像这样。

在此处输入图像描述

所以我想知道如何在调整窗口大小时重绘控件并调整地图大小。我在这里尝试了这段代码。但是没办法...

#map_canvas {width:100%;height:100%;position: absolute; top: 42px; left: 0; right: 0;
 bottom:0; z-index: 1; overflow: hidden; }
4

1 回答 1

2

当 window.onresize 事件发生时,在 #map_canvas 上设置样式属性:

window.onresize = function(event) {
    var style = document.getElementById('map_canvas').style;
    style.width = '100%';
    style.height = '100%';
    style.position = 'absolute';
    style.top = '42px';
    style.left = '0';
    style.right = '0';
    style.bottom = '0';
    style.z-index = '0';
    style.overflow = 'hidden';
    google.maps.event.trigger(map, 'resize');
    map.setZoom(map.getZoom());
}

考虑到顶部 42px 的 jQuery equiv

window.onresize = function(event) {
    var el = $("#map_canvas");
    el.css("position", "absolute");
    el.css("top", "42px");
    el.css("left", "0px");
    el.css("right", "0px");
    el.css("bottom", "0px");
    el.css("width", "100%");
    el.css("height", $("body").height() - 42);
    el.css("overflow", "hidden");
    google.maps.event.trigger(Maps.map, 'resize');
    Maps.map.setZoom(Maps.map.getZoom());
}
于 2013-01-11T23:16:27.820 回答