//================================= // Panorama //================================= $(document).ready(function() { "use strict"; var panorama = $("#panorama").ipanorama({ "theme": "ipnrm-theme-default", "autoLoad": false, "autoRotate": false, "autoRotateSpeed": 0.001, "autoRotateInactivityDelay": 3000, "mouseWheelPreventDefault": true, "mouseWheelRotate": false, "mouseWheelRotateCoef": 0.2, "mouseWheelZoom": false, "mouseWheelZoomCoef": 0.05, "hoverGrab": false, "hoverGrabYawCoef": 20, "hoverGrabPitchCoef": 20, "grab": true, "grabCoef": 0.1, "pinchZoom": true, "pinchZoomCoef": 0.1, "showControlsOnHover": false, "showSceneThumbsCtrl": false, "showSceneMenuCtrl": false, "showSceneNextPrevCtrl": true, "showShareCtrl": false, "showZoomCtrl": true, "showFullscreenCtrl": true, "showAutoRotateCtrl": false, "sceneThumbsVertical": true, "sceneThumbsStatic": false, "title": true, "compass": false, "keyboardNav": false, "keyboardZoom": false, "sceneNextPrevLoop": false, "popover": true, "popoverPlacement": "top", "hotSpotBelowPopover": true, "popoverShowTrigger": "hover", "popoverHideTrigger": "leave", "pitchLimits": false, "pitchLimitsTop": 0, "pitchLimitsBottom": 0, "mobile": false, "sceneId": "scene1", "sceneFadeDuration": 3000, "sceneBackgroundLoad": false, "scenes": { "scene1": { "type": "sphere", "cubeTextureCount": "single", "sphereWidthSegments": 100, "sphereHeightSegments": 40, "image": "../../uploads/6672/1764686215_R0011109.JPG", "title": "Büro 1", "titleHtml": false, "titleSelector": null, "hotSpots": [ { "yaw": 57.683, "pitch": -2.2442, "sceneId": "scene2", "imageUrl": "", "imageWidth": null, "imageHeight": null, "link": null, "linkNewWindow": false, "popoverHtml": true, "popoverContent": "Büro 2", "popoverSelector": null, "popoverLazyload": true, "popoverShow": false } ] }, "scene2": { "type": "sphere", "cubeTextureCount": "single", "sphereWidthSegments": 100, "sphereHeightSegments": 40, "image": "../../uploads/6672/1764686221_R0011110.JPG", "title": "Büro 2", "titleHtml": false, "titleSelector": null, "hotSpots": [ { "yaw": -13.2064, "pitch": 3.7064, "sceneId": "scene1", "imageUrl": "", "imageWidth": null, "imageHeight": null, "link": null, "linkNewWindow": false, "popoverHtml": true, "popoverContent": "Büro 1", "popoverSelector": null, "popoverLazyload": true, "popoverShow": false }, { "yaw": 106.0306, "pitch": -3.4694, "sceneId": "scene3", "imageUrl": "", "imageWidth": null, "imageHeight": null, "link": null, "linkNewWindow": false, "popoverHtml": true, "popoverContent": null, "popoverSelector": null, "popoverLazyload": true, "popoverShow": false } ] }, "scene3": { "type": "sphere", "cubeTextureCount": "single", "sphereWidthSegments": 100, "sphereHeightSegments": 40, "image": "../../uploads/6672/1764686275_R0011114.JPG", "title": "Eingang", "titleHtml": false, "titleSelector": null, "hotSpots": [ { "yaw": 323.2132, "pitch": -5.5264, "sceneId": "scene2", "imageUrl": "", "imageWidth": null, "imageHeight": null, "link": null, "linkNewWindow": false, "popoverHtml": true, "popoverContent": "Büro 1", "popoverSelector": null, "popoverLazyload": true, "popoverShow": false } ] } } }); $("#fullscreen").click(function() { panorama.ipanorama("fullscreen"); }); $("#grab").click(function() { panorama.ipanorama("grab"); }); });