//================================= // Panorama //================================= $(document).ready(function() { "use strict"; var panorama = $("#panorama").ipanorama({ "theme": "ipnrm-theme-default", "autoLoad": true, "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/9675/1607432753_Flur.JPG", "yaw": 71.33043, "pitch": -12.53043, "title": "Flur", "titleHtml": false, "titleSelector": null, "hotSpots": [ { "yaw": 71.33043, "pitch": -12.53043, "sceneId": "scene4", "imageUrl": "", "imageWidth": null, "imageHeight": null, "link": null, "linkNewWindow": false, "popoverHtml": true, "popoverContent": "Wohnzimmer", "popoverSelector": null, "popoverLazyload": true, "popoverShow": false }, { "yaw": 13.97237, "pitch": -6.32021, "sceneId": "scene2", "imageUrl": "", "imageWidth": null, "imageHeight": null, "link": null, "linkNewWindow": false, "popoverHtml": true, "popoverContent": "Badezimmer", "popoverSelector": null, "popoverLazyload": true, "popoverShow": false }, { "yaw": 133.49694, "pitch": -4.18176, "sceneId": "scene3", "imageUrl": "", "imageWidth": null, "imageHeight": null, "link": null, "linkNewWindow": false, "popoverHtml": true, "popoverContent": "Schlafzimmer", "popoverSelector": null, "popoverLazyload": true, "popoverShow": false } ] }, "scene2": { "type": "sphere", "cubeTextureCount": "single", "sphereWidthSegments": 100, "sphereHeightSegments": 40, "image": "../../uploads/9675/1607432749_Badezimmer.JPG", "yaw": 86.94675, "pitch": -8.94675, "title": "Badezimmer", "titleHtml": false, "titleSelector": null, "hotSpots": [ { "yaw": -110.1398, "pitch": -7.20714, "sceneId": "scene1", "imageUrl": "", "imageWidth": null, "imageHeight": null, "link": null, "linkNewWindow": false, "popoverHtml": true, "popoverContent": "Flur", "popoverSelector": null, "popoverLazyload": true, "popoverShow": false } ] }, "scene3": { "type": "sphere", "cubeTextureCount": "single", "sphereWidthSegments": 100, "sphereHeightSegments": 40, "image": "../../uploads/9675/1607432760_Schlafzimmer.JPG", "yaw": 95.16336, "pitch": -8.56336, "title": "Schlafzimmer", "titleHtml": false, "titleSelector": null, "hotSpots": [ { "yaw": -73.86574, "pitch": -3.18682, "sceneId": "scene1", "imageUrl": "", "imageWidth": null, "imageHeight": null, "link": null, "linkNewWindow": false, "popoverHtml": true, "popoverContent": "Flur", "popoverSelector": null, "popoverLazyload": true, "popoverShow": false } ] }, "scene4": { "type": "sphere", "cubeTextureCount": "single", "sphereWidthSegments": 100, "sphereHeightSegments": 40, "image": "../../uploads/9675/1607432763_Wohnzimmer.JPG", "yaw": 82.33121, "pitch": -2.03121, "title": "Wohnzimmer", "titleHtml": false, "titleSelector": null, "hotSpots": [ { "yaw": -137.42882, "pitch": -2.1217, "sceneId": "scene1", "imageUrl": "", "imageWidth": null, "imageHeight": null, "link": null, "linkNewWindow": false, "popoverHtml": true, "popoverContent": "Flur", "popoverSelector": null, "popoverLazyload": true, "popoverShow": false }, { "yaw": -86.40366, "pitch": -2.39654, "sceneId": "scene5", "imageUrl": "", "imageWidth": null, "imageHeight": null, "link": null, "linkNewWindow": false, "popoverHtml": true, "popoverContent": "Küche", "popoverSelector": null, "popoverLazyload": true, "popoverShow": false } ] }, "scene5": { "type": "sphere", "cubeTextureCount": "single", "sphereWidthSegments": 100, "sphereHeightSegments": 40, "image": "../../uploads/9675/1607432756_Küche.JPG", "yaw": 64.23216, "pitch": -4.33216, "title": "Küche", "titleHtml": false, "titleSelector": null, "hotSpots": [ { "yaw": -88.00377, "pitch": -3.37497, "sceneId": "scene4", "imageUrl": "", "imageWidth": null, "imageHeight": null, "link": null, "linkNewWindow": false, "popoverHtml": true, "popoverContent": "Wohnzimmer", "popoverSelector": null, "popoverLazyload": true, "popoverShow": false } ] } } }); $("#fullscreen").click(function() { panorama.ipanorama("fullscreen"); }); $("#grab").click(function() { panorama.ipanorama("grab"); }); });