Read the documentation or view this example full screen.
function initPano() { // Note: constructed panorama objects have visible: true // set by default. var panorama = new google.maps.StreetViewPanorama( document.getElementById('map'), { position: {lat: 42.345573, lng: -71.098326}, addressControlOptions: { position: google.maps.ControlPosition.BOTTOM_CENTER }, linksControl: false, panControl: false, enableCloseButton: false }); }
<div id="map"></div>
/* Always set the map height explicitly to define the size of the div * element that contains the map. */ #map { height: 100%; } /* Optional: Makes the sample page fill the window. */ html, body { height: 100%; margin: 0; padding: 0; }
<!-- Replace the value of the key parameter with your own API key. --> <script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCkUOdZ5y7hMm0yrcCQoCvLwzdM6M8s5qk&callback=initPano"> </script>
Essayez par vous-même
Placez la souris en haut à droite du bloc de code pour le copier ou l'ouvrir dans JSFiddle.
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Street View controls</title> <style> /* Always set the map height explicitly to define the size of the div * element that contains the map. */ #map { height: 100%; } /* Optional: Makes the sample page fill the window. */ html, body { height: 100%; margin: 0; padding: 0; } </style> </head> <body> <div id="map"></div> <script> function initPano() { // Note: constructed panorama objects have visible: true // set by default. var panorama = new google.maps.StreetViewPanorama( document.getElementById('map'), { position: {lat: 42.345573, lng: -71.098326}, addressControlOptions: { position: google.maps.ControlPosition.BOTTOM_CENTER }, linksControl: false, panControl: false, enableCloseButton: false }); } </script> <script async defer src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&callback=initPano"> </script> </body> </html>