我根据以下使用了街景
/* Map html */
<div id="mapDiv" class="">
<div id="map-holder">
<div id="map_canvas" class="bigmap"></div>
<div id="map_stv" class="minimap" style="display: none"></div>
</div>
</div>
/* Css associated */
.bigmap{
width:100%;
height:100%;
}
.minimap{
width:50%;
height:100%;
}
#map_stv {
position: absolute;
top: 0;
right: 0;
}
#map_stv img {
border: none !important;
max-width: none !important;
}
当我需要显示街景时,我将小地图类添加到 map_canvas 并切换 map_stv。它工作正常。但是当地图的尺寸为 768x1024 时,我会遇到以下问题
有没有人遇到过这个?对此有任何指示吗?