无法在Streetview中发生事件

时间:2012-05-19 22:59:50

标签: javascript google-maps-api-3

我无法在嵌入infowindow的Streetview中的pano_change上触发事件。每次用户在Streetview infowindow中导航时,我都需要获取对象getLinks()的数组getPosition()StreetViewPanorama。它声明如下。我真的不明白为什么(它适用于标记和infowindow上的事件)。

//code here

var contentString = '<input type="button" value="Grab this picture" onClick="captureImage()" /> <div id="content" style="width:200px;height:200px;"></div>';      

//code here

var infowindow = new google.maps.InfoWindow({
    content: contentString
});

//code here//

google.maps.event.addListener(infowindow, 'domready', function() {
    if (pano != null) {
        pano.unbind("position");
        pano.setVisible(false);     
    }
    pano = new google.maps.StreetViewPanorama(document.getElementById("content"), {
        navigationControl: true,
        navigationControlOptions: {style: google.maps.NavigationControlStyle.ANDROID},
        enableCloseButton: false,
        addressControl: false,
        linksControl: false 
    });

    pano.bindTo("position", marker);
    pano.setVisible(true);

});

1 个答案:

答案 0 :(得分:2)

您需要添加google.maps.event.addListener(pano, 'links_changed', XXXX)google.maps.event.addListener(pano, 'position_changed', XXXXX)才能获取活动。

<强>初始化

var pano = new google.maps.StreetViewPanorama(<element>, panoramaOptions);
google.maps.event.addListener(pano, 'pano_changed', function() {
    // whatever
});

google.maps.event.addListener(pano, 'links_changed', function() {
    var links = pano.getLinks();
    for (var i in links) {
        // whatever
    }
});

google.maps.event.addListener(panorama, 'position_changed', function() {
    var newPos = pano.getPosition();
});

google.maps.event.addListener(pano, 'pov_changed', function() {
    var newPoV = panorama.getPov();
});

现在,每当你对这三个事件(链接,pov,位置)中的任何一个进行更改时,都会调用相关函数。