Video360Viewer

JavaScript API reference for Video360 Viewer.

Video360Viewer([config])

Constructor, creates a new HTML5 Video360 Viewer instance.

Parameters

config

{object} optional JSON configuration object, allows all the viewer settings to pass to the constructor to avoid calling individual setter methods. Contains the following properties:

  • containerId - {String} ID of the DOM container (normally a DIV ) into which the viewer is inserted. By the time this method is called, it is not necessary to have the container element created. However, the container must exist when init() is run.

    Required.

  • params - {Object} JSON object with viewer configuration parameters where the property name is either viewer-specific configuration option or SDK modifier, and the value of that property is a corresponding settings value.

    Required.

  • handlers - {Object} JSON object with viewer event callbacks, where the property name is the name of supported viewer event and the property value is a JavaScript function reference to appropriate callback.

    Optional.

    See Event callbacks for more information about viewer events.

  • localizedTexts - {Object} JSON object with localization data. Optional.

    See Localization of user interface elements for more information.

    See also the Viewer SDK User Guide and the example for more information about the object's content.

Returns

None.

Example

var video360Viewer = new s7viewers.Video360Viewer({
 "containerId":"s7viewer",
"params":{
 "asset":"Viewers/space_station_360-AVS",
 "serverurl":"https://s7d9.scene7.com/is/image/",
 "videoserverurl":"https://s7d9.scene7.com/is/content/"
},
"handlers":{
 "initComplete":function() {
  console.log("init complete");
}
},
"localizedTexts":{
"en":{
"Video360Player.ERROR":"Your Browser does not support HTML5 Video tag or the video cannot be played."
},
"fr":{
"Video360Player.ERROR":"Votre navigateur ne prend pas en charge la vidéo HTML5 tag ou la vidéo ne peuvent pas être lus."
},
defaultLocale:"en"
}
});

On this page