I'm using google street view , i want to make users look around the street when they enter my site.
I have tried this:
var lookAround = function(){
pano.getPov().heading = pano.getPov().heading + 50;
if(pano.getPov().heading < 100){
setTimeout("lookAround()",2000);
}
};
but it doesn't work , the rotation parameter have actually changed , but the view of the picture doesn't.
Can any one help me with this ?many thanks!