31
12 月
Vacant sites testing
0 Comment
new PhotoSphereViewer.Viewer({
panorama: ‘https://res.cloudinary.com/dvz415kl0/image/upload/v1609402734/GS__0681_tzacls.jpg’,
container: ‘photosphere’,
caption: ‘Parc national du Mercantour © Damien Sorel‘,
loadingImg: ‘https://photo-sphere-viewer.js.org/assets/photosphere-logo.gif’,
navbar: ‘autorotate zoom download caption fullscreen’,
defaultLat: 0.3,
mousewheel: false,
touchmoveTwoFingers: true,
});
const viewer = new PhotoSphereViewer.Viewer({
plugins: [
SimplePlugin,
[PluginWithOptions, {
option1: ‘foo’,
option2: ‘bar’,
}],
],
});
const plugin = new viewer.getPlugin(PluginWithOptions);
plugin.on(‘something’, () => {
/* … */
});