Street View ContainersStay organized with collectionsSave and categorize content based on your preferences.
AI-generated Key Takeaways
This example demonstrates embedding a Street View panorama within a designated<div>element on a webpage, independent of a Google Map.
It showcases how to initialize aStreetViewPanoramaobject using JavaScript or TypeScript, specifying the desired location, point of view, and zoom level.
The HTML structure includes a dedicateddivfor the panorama and loads the Google Maps JavaScript API with a callback to initialize the Street View.
The provided CSS styles the panorama container to take up the full height of the browser window.
Users can interact with the embedded Street View panorama, exploring the location virtually.
This example displays aStreetViewPanoramawithin a separate<div>element, rather than in conjunction
with a map.
<html>
<head>
<title>Street View Containers</title>
<link rel="stylesheet" type="text/css" href="./style.css" />
<script type="module" src="./index.js"></script>
</head>
<body>
<div id="street-view"></div>
<!--
The `defer` attribute causes the script to execute after the full HTML
document has been parsed. For non-blocking uses, avoiding race conditions,
and consistent behavior across browsers, consider loading using Promises. See
https://developers.google.com/maps/documentation/javascript/load-maps-js-api
for more information.
-->
<script
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyB41DRUbKWJHPxaFjMAwdrzWzbVKartNGg&callback=initialize&v=weekly"
defer
></script>
</body>
</html>
Git and Node.js are required to run this sample locally. Follow theseinstructionsto install Node.js and NPM. The following commands clone, install dependencies and start the sample application.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-11-14 UTC."],[],[]]