Bladeren bron

Added function to add hotspot to another scene

pull/251/head
Prisacariu Alexandru 8 jaren geleden
bovenliggende
commit
9a4e9ddb35
1 gewijzigde bestanden met toevoegingen van 17 en 0 verwijderingen
  1. +17
    -0
      src/js/pannellum.js

+ 17
- 0
src/js/pannellum.js Bestand weergeven

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

/**
* 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


Laden…
Annuleren
Opslaan