我拍摄了一个 photosphere 并使用以下代码嵌入它(感谢 Dr.Molle):
<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。我尝试了“链接”属性但没有成功。