我使用以下代码(thanks to Dr.Molle)
拍摄了一张photosphere并嵌入了它<script>
google.maps.event.addDomListener(window, 'load', function() {
google.maps.streetViewViewer = 'photosphere';
new google.maps.StreetViewPanorama(document.getElementById('pano'), {
position: {lat: 45.3189037,lng:5.605167},
pov: {
heading: -65,
pitch: 5
},
zoom: 1
});
});
</script>
<div id="pano" style="height: 500px; width: 500px"></div>
现在我想添加导航链接到其他photospheres。我尝试"links" property但没有成功。