소스 검색

Merge 9a4e9ddb35 into bae3966413

pull/251/merge
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


불러오는 중...
취소
저장