Read the documentation or view this example fullscreen.
var panorama; function initialize() { panorama = new google.maps.StreetViewPanorama( document.getElementById('street-view'), { position: {lat: 37.869260, lng: -122.254811}, pov: {heading: 165, pitch: 0}, zoom: 1 }); }
<div id="street-view"></div>
html, body { height: 100%; margin: 0; padding: 0; } #street-view { height: 100%; }
<!-- 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=initialize"> </script>
Try it yourself
You can experiment with this code in JSFiddle by clicking the <>
icon in the
top-right corner of the code window.
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Street View Containers</title> <style> html, body { height: 100%; margin: 0; padding: 0; } #street-view { height: 100%; } </style> </head> <body> <div id="street-view"></div> <script> var panorama; function initialize() { panorama = new google.maps.StreetViewPanorama( document.getElementById('street-view'), { position: {lat: 37.869260, lng: -122.254811}, pov: {heading: 165, pitch: 0}, zoom: 1 }); } </script> <script async defer src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&callback=initialize"> </script> </body> </html>