Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question

1 Answer

up vote 0 down vote accepted

When you make any changes to the panorama you have to make it visible by using the method setVisible. In your case you have to call pano.setVisible(true) after you set the new heading.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.