Browse Source

Merge 9a4e9ddb35 into bae3966413

pull/251/merge
Prisacariu Alexandru 7 years ago
committed by GitHub
parent
commit
05c7fb886d
1 changed files with 17 additions and 0 deletions
  1. +17
    -0
      src/js/pannellum.js

+ 17
- 0
src/js/pannellum.js View File

@@ -2620,6 +2620,23 @@ this.addHotSpot = function(hs, sceneId) {
}

/**
* Add a new hot spot to a specific scene.
* @memberof Viewer
* @instance
* @param {string} sceneId - The scene where to add the hot spot
* @param {Object} hs - The configuration for the hot spot
* @returns {boolean} True if the add was successful, else false
*/
this.addHotSpotToScene = function(sceneId, hs) {
// TODO: do some checks if it is the actual scene
if (initialConfig.scenes.hasOwnProperty(sceneId)) {
initialConfig.scenes[sceneId].hotSpots.push(hs);
return true;
}
return false;
}

/**
* Remove a hot spot.
* @memberof Viewer
* @instance


Loading…
Cancel
Save