0

ストリートビューのコンテナを作っていました。私はそのリンクを見ていました。

しかし、ブラウザ /Google chrome/ でストリート ビューが表示されません。

私の間違いと間違いを教えてください。ありがとうございました

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>アスタンソーチのGoogle-APIです。&lt;/title>
<link href="/maps/documentation/javascript/examples/default.css" rel="stylesheet">
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>


<script>

function initialize() {
    var fenway = new google.maps.LatLng(32.785473,129.862451);
    var panoramaOptions = {
        position: fenway,
        pov: {
            heading: 165,
            pitch: 0
        },
    zoom: 1
    };

    var myPano = new google.maps.StreetViewPanorama(
        document.getElementById('map-canvas'),
        panoramaOptions);
    myPano.setVisible(true);

}

google.maps.event.addDomListener(window, 'load', initialize);
</script>
</head>

<body>
<div id="map-canvas"></div>
</body>
</html>
4

1 に答える 1