3

实时页面在这里: http ://teamclarke.com/teamclarke/?listing=2-251-east-8th-street

街景适用于 IE9 和 Chrome。随便拿个FF11的灰盒

jQuery(function() {
            // Handler for .ready() called.
            var center = new google.maps.LatLng(44.230065,-76.50000);

            var svOptions = {
                position: center,
                visible:true
            };

            var sv = new google.maps.StreetViewPanorama(document.getElementById('pano'),svOptions);
            //initialize();
        });

任何帮助将不胜感激。

4

1 回答 1

12

It's caused by style-rules for .entry-content img, they also affect the images of the StreetView.

Add this to your styles:

#pano img {
    border: none !important;
    max-width: none !important;
}
于 2012-07-05T08:49:27.280 回答