Skip to content Skip to sidebar Skip to footer

Remove Google Street View Panorama Effect

I have a Google Street View that I have added using the Google Maps JavaScript API v3. You can see it here. Most of what the map does is fine. The only problem is that the Street V

Solution 1:

Thanks for answering my question. The issue has now been solved. It turns out it is a Firefox-specific issue.

I'm now quoting the solution from user3109401's post from the link.

There's a undocumented attribute "mode" can be set in PanoramaOptions. You can use 'html4', 'html5' and 'webgl'. It will be no fish-eye effect if I set the mode to 'html5'. (But tourdash uses 'webgl' instead)

var panoramaOptions = {
    pano : panoId,
    pov: {
      heading: heading,
      pitch: pitch
    },
    enableCloseButton:false,
    addressControl:false,
    panControl:false,
    visible: true,
    clickToGo:false,
    addressControl:false,
    mode : "html5",
    zoomControlOptions:{
        position : google.maps.ControlPosition.TOP_LEFT
    }
};

Post a Comment for "Remove Google Street View Panorama Effect"