A photosphere is used to showcase a 360° image using Google VR view. This is done via a JavaScript API to manipulate the contents of an <iframe>
.
A link to the following file is required for a photosphere to work. Put the code at the bottom of the body
section.
<script src="https://storage.googleapis.com/vrview/2.0/build/vrview.min.js"></script>
Use the following code to ensure that the photosphere is responsive and work on all sizes of devices:
<div class="embed-responsive embed-responsive-16by9">
<div id="Photosphere-ID"></div>
</div>
Add the following code to the page and amend the following parameters:
<div>
where the photosphere will be displayed, change this to match the Photosphere-ID you specified in the HTML.path/to/IMAGE/
with the desired URL.window.addEventListener('load', onVrViewLoad)
function onVrViewLoad() {
var vrView = new VRView.Player('#Photosphere-ID', {
image: 'path/to/IMAGE/'
});
}
<!-- Begin pattern: photosphere //-->
<script src="https://storage.googleapis.com/vrview/2.0/build/vrview.min.js"></script>
<div class="embed-responsive embed-responsive-16by9">
<div id="photosphere"></div>
</div>
<!-- End pattern: photosphere //-->