Utilizzo questo codice
codice:
window.onload = initialize;

var infowindow;
var map;
var panorama;
var marker;
function initialize() 
{
    var myLatlng = new google.maps.LatLng(39.3084166944444, 8.53327225);
    var myOptions =
    {
        zoom: 17,
        center: myLatlng,
        mapTypeId: google.maps.MapTypeId.HYBRID, /*ROADMAP, SATELLITE, HYBRID, TERRAIN*/
        streetViewControl: true
    }
    
    map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);

    marker = new google.maps.Marker({position: new google.maps.LatLng(39.3083035555556, 8.53177980555555), map: map, title:'title1'});
    marker = new google.maps.Marker({position: new google.maps.LatLng(39.3070401388889, 8.53353961111111), map: map, title:'title2'});


    
}
Il problema è che la visualizzazione di streetView avviene come se si utilizzasse un grandagolo con forte distorsione dell'immagine.
Io vorrei che si vedesse come avviene collegandosi direttamente con http://maps.google.it/maps

:master: dove dovrei intervenire?

ciao