这是我在http://jsfiddle.net/fyDkD/14/上工作的小提琴
我的HTML在这里
<div id="map-holder">
<div id="map_canvas" class="bigmap"></div>
<div id="map_stv" class="minimap" style="display:none"></div>
</div>
我的CSS在这里
#map-holder {
height: 1200px ;
position: relative;
}
.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;
}
在这个我看到,当我们将街景小人拖放到谷歌地图上的任何地方时,我们就会得到街景。街景不仅在火狐浏览器中是正确的。我还看到,如果宽度和高度之间的差异很大,那么我们可以很容易地看到这个问题。街景的图像显示不正确。请就此提出建议。