我们正在从 Google Map API v2 更新到 v3,到目前为止,我已经能够实现所有必需的功能。至少在 IE、Firefox 和 Chrome 的最新版本方面。我们还要求 API 必须在 IE9 上运行。可悲的是,它甚至没有出现在那里。
相关代码(简化,我注释了之后跳转到另一个位置并为结果放置标记的代码):
@UiField
SimplePanel mapWrapper;
[...]
MapOptions options = MapOptions.create();
options.setCenter(LatLng.create(46.81819, 8.22751));
options.setZoom(5);
options.setMapTypeId(MapTypeId.ROADMAP);
options.setDraggable(true);
options.setMapTypeControl(true);
options.setPanControl(true);
options.setScaleControl(true);
options.setScrollwheel(true);
options.setStreetViewControl(true);
mapWrapper.setSize("350px", "350px");
m_Map = GoogleMap.create(mapWrapper.getElement(), options);
m_Map.triggerCenterChanged();
m_Map.triggerResize();
而 IE10 包含
<div style="width: 350px; height: 350px; overflow: hidden; position: relative; background-color: rgb(229, 227, 223);">
<div style="left: 0px; top: 0px; width: 100%; height: 100%; overflow: hidden; position: absolute; z-index: 0;">
[...] // all the tags which make up the api and its content
</div>
</div>
IE9只有
<div style="width: 350px; height: 350px;">
<div style="overflow: hidden;">
</div>
</div>
在同一个位置。