This example displays a
StreetViewPanorama
within a separate <div>
element, rather than in conjunction
with a map.
Read the documentation.
TypeScript
let panorama: google.maps.StreetViewPanorama; function initialize() { panorama = new google.maps.StreetViewPanorama( document.getElementById("street-view") as HTMLElement, { position: { lat: 37.86926, lng: -122.254811 }, pov: { heading: 165, pitch: 0 }, zoom: 1, } ); }
JavaScript
let panorama; function initialize() { panorama = new google.maps.StreetViewPanorama( document.getElementById("street-view"), { position: { lat: 37.86926, lng: -122.254811 }, pov: { heading: 165, pitch: 0 }, zoom: 1, } ); }
CSS
html, body { height: 100%; margin: 0; padding: 0; } #street-view { height: 100%; }
HTML
<!DOCTYPE html> <html> <head> <title>Street View Containers</title> <script src="https://polyfill.io/v3/polyfill.min.js?features=default"></script> <script src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&callback=initialize&libraries=&v=weekly" defer ></script> <link rel="stylesheet" type="text/css" href="./style.css" /> <script src="./index.js"></script> </head> <body> <div id="street-view"></div> </body> </html>
All
<!DOCTYPE html> <html> <head> <title>Street View Containers</title> <script src="https://polyfill.io/v3/polyfill.min.js?features=default"></script> <script src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&callback=initialize&libraries=&v=weekly" defer ></script> <style type="text/css"> html, body { height: 100%; margin: 0; padding: 0; } #street-view { height: 100%; } </style> <script> let panorama; function initialize() { panorama = new google.maps.StreetViewPanorama( document.getElementById("street-view"), { position: { lat: 37.86926, lng: -122.254811 }, pov: { heading: 165, pitch: 0 }, zoom: 1, } ); } </script> </head> <body> <div id="street-view"></div> </body> </html>
Create a starter application from sample
A skeleton starter application using TypeScript, Webpack, and Babel can be generated from this sample using one of the methods below.
Run Locally
Node.js is required to run this sample locally. Follow these instructions to install Node.js and NPM.
npx @googlemaps/js-samples init streetview-embed DESTINATION_FOLDER
Run in Google Cloud Shell
Google Cloud Shell is an interactive shell environment for Google Cloud Platform that makes it easy for you to learn and experiment with GCP and manage your projects and resources from your web browser.
Run in Cloud Shell