Prisacariu Alexandru преди 7 години
committed by GitHub
родител
ревизия
05c7fb886d
променени са 1 файла, в които са добавени 17 реда и са изтрити 0 реда
  1. +17
    -0
      src/js/pannellum.js

+ 17
- 0
src/js/pannellum.js Целия файл

@@ -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


Зареждане…
Отказ
Запис