在 Google Maps Streetview (V3) 中,可以通过监控事件来读取 Pitch、Heading 和 Zoom
google.maps.event.addListener(panorama, "pov_changed", function() {
var panoInfo = panorama.getPov();
// Picth etc
document.getElementById("orgpit").value=panoInfo['pitch'];
document.getElementById("orghea").value=panoInfo['heading'];
document.getElementById("orgzoo").value=panoInfo['zoom'];
});
但是当街景中的位置发生变化时,我怎样才能检索新的 geolat/geolng 呢?