@qispace/vue3-player 0.3.3 → 0.3.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/vue-components/src/components/miniMap/VMiniMap.vue.d.ts +1 -50
- package/dist/vue-components/src/components/miniMap/VMiniMapMap.vue.d.ts +4 -0
- package/dist/vue-components/src/components/virtualTour/VMoveable.vue.d.ts +19 -10
- package/dist/vue-components/src/lib/shared/I18N.d.ts +1 -1
- package/dist/vue-components/style.css +1 -1
- package/dist/vue-components/vue3-player.js +2463 -2420
- package/dist/vue-components/vue3-player.umd.cjs +1 -1
- package/package.json +1 -1
|
@@ -1,51 +1,2 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { CdnFileResolverCallback } from '../types';
|
|
3
|
-
|
|
4
|
-
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
5
|
-
cdnFileResolver: CdnFileResolverCallback;
|
|
6
|
-
minimapJson: MiniMapJson;
|
|
7
|
-
apartmentJson: ApartmentJson;
|
|
8
|
-
currentCamera: string;
|
|
9
|
-
level: number;
|
|
10
|
-
rotation?: number | null;
|
|
11
|
-
transformAngle?: number;
|
|
12
|
-
}>, {
|
|
13
|
-
rotation: any;
|
|
14
|
-
transformAngle: number;
|
|
15
|
-
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
16
|
-
close: () => void;
|
|
17
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
18
|
-
cdnFileResolver: CdnFileResolverCallback;
|
|
19
|
-
minimapJson: MiniMapJson;
|
|
20
|
-
apartmentJson: ApartmentJson;
|
|
21
|
-
currentCamera: string;
|
|
22
|
-
level: number;
|
|
23
|
-
rotation?: number | null;
|
|
24
|
-
transformAngle?: number;
|
|
25
|
-
}>, {
|
|
26
|
-
rotation: any;
|
|
27
|
-
transformAngle: number;
|
|
28
|
-
}>>> & {
|
|
29
|
-
onClose?: () => any;
|
|
30
|
-
}, {
|
|
31
|
-
rotation: number | null;
|
|
32
|
-
transformAngle: number;
|
|
33
|
-
}, {}>;
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}>;
|
|
34
2
|
export default _default;
|
|
35
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
36
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
37
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
38
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
39
|
-
} : {
|
|
40
|
-
type: import('vue').PropType<T[K]>;
|
|
41
|
-
required: true;
|
|
42
|
-
};
|
|
43
|
-
};
|
|
44
|
-
type __VLS_WithDefaults<P, D> = {
|
|
45
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
46
|
-
default: D[K];
|
|
47
|
-
}> : P[K];
|
|
48
|
-
};
|
|
49
|
-
type __VLS_Prettify<T> = {
|
|
50
|
-
[K in keyof T]: T[K];
|
|
51
|
-
} & {};
|
|
@@ -8,6 +8,8 @@ declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimePr
|
|
|
8
8
|
currentCamera: string;
|
|
9
9
|
rotation: number | null;
|
|
10
10
|
transformAngle: number;
|
|
11
|
+
containerWidth: number;
|
|
12
|
+
containerHeight: number;
|
|
11
13
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
12
14
|
backgroundImage: string;
|
|
13
15
|
allCameras: ApartmentJson['cameras'];
|
|
@@ -15,6 +17,8 @@ declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimePr
|
|
|
15
17
|
currentCamera: string;
|
|
16
18
|
rotation: number | null;
|
|
17
19
|
transformAngle: number;
|
|
20
|
+
containerWidth: number;
|
|
21
|
+
containerHeight: number;
|
|
18
22
|
}>>>, {}, {}>;
|
|
19
23
|
export default _default;
|
|
20
24
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -1,16 +1,25 @@
|
|
|
1
|
-
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
}): any;
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
+
size: string;
|
|
3
|
+
}>, {
|
|
4
|
+
bodyWidth: import('vue').Ref<any>;
|
|
5
|
+
bodyHeight: import('vue').Ref<any>;
|
|
6
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
7
|
+
size: string;
|
|
8
|
+
}>>>, {}, {}>, {
|
|
9
|
+
header?(_: {}): any;
|
|
10
|
+
body?(_: {}): any;
|
|
11
11
|
footer?(_: {}): any;
|
|
12
12
|
}>;
|
|
13
13
|
export default _default;
|
|
14
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
15
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
16
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
17
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
18
|
+
} : {
|
|
19
|
+
type: import('vue').PropType<T[K]>;
|
|
20
|
+
required: true;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
14
23
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
15
24
|
new (): {
|
|
16
25
|
$slots: S;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@media (hover: hover){.hover-check[data-v-eb9b348d]{display:none}}#canvas[data-v-27d7323f]{position:absolute;top:0;width:100%;-webkit-user-select:none;user-select:none;touch-action:none;padding-top:56.25%}#canvas-mask[data-v-27d7323f]{position:absolute;top:0;max-width:100%;z-index:4;-webkit-user-select:none;user-select:none}@media only screen and (min-width: 1280px){#canvas[data-v-27d7323f]{border-radius:10px}}#container[data-v-e6c054c7]{position:absolute;top:0;width:100%;-webkit-user-select:none;user-select:none;touch-action:none;padding-top:56.25%}.svg-container[data-v-e6c054c7]{transition-property:opacity;transition-duration:.25s;transition-timing-function:ease-in-out}.svg-container[data-v-e6c054c7],svg[data-v-e6c054c7]{position:absolute;left:0;top:0;width:100%;height:100%;z-index:10000}svg g[data-v-e6c054c7] path{cursor:pointer;stroke-width:inherit!important;stroke-opacity:inherit!important;stroke:inherit!important;fill:inherit!important;fill-opacity:inherit!important;transition-property:fill-opacity,fill;transition-duration:.25s;transition-timing-function:ease-in-out}@media only screen and (min-width: 1280px){#canvas[data-v-e6c054c7]{border-radius:10px}}.v-btn[data-v-44ed308e]{background-color:#fff}.frame-container[data-v-0c291cb9]{position:relative;max-width:100%;top:0;left:0;bottom:185px;padding-top:56%;z-index:1;overflow:hidden}.frame-image[data-v-0c291cb9]{position:absolute;top:0;width:100%;height:100%}.frame-image img[data-v-0c291cb9]{min-width:100%;max-width:100%;z-index:0}#image-stack picture[data-v-0c291cb9]{visibility:hidden}#image-stack picture.show[data-v-0c291cb9]{visibility:visible}.fill-parent[data-v-0c291cb9]{position:absolute;top:0;bottom:0;left:0;right:0}.floating-card[data-v-7d5e6067]{position:absolute;left:0;top:0;z-index:10;display:flex;transition:transform .1s ease-in-out}.is-not-hoverable[data-v-7d5e6067]{position:relative;width:100%}.v-dialog__content[data-v-7d5e6067]{align-items:flex-start}.zoom-box-container[data-v-3e334a46]{width:100%;height:100%;left:0;top:0;overflow:hidden;-webkit-user-select:none;user-select:none;touch-action:none}.zoom-box[data-v-3e334a46]{width:100%;height:100%;-webkit-user-select:none;user-select:none;touch-action:none}.interactive-viewer[data-v-34e2e7a2]{padding-top:56.65%;position:relative}.fill-parent[data-v-34e2e7a2]{position:absolute;top:0;bottom:0;left:0;right:0}.navigation[data-v-34e2e7a2]{position:absolute;width:100%;bottom:32px;z-index:99;padding:0 20px;display:flex;justify-content:center}@media only screen and (max-width: 900px){.navigation[data-v-34e2e7a2]{position:absolute;bottom:0;scale:.5;width:200%!important;transform:translate(-50%)}}img[data-v-dbbdc1e0]{position:relative;display:block;z-index:1}img[data-v-ecb88391]{position:relative;display:block;z-index:3}.top-left[data-v-ecb88391]{top:0;left:0}.small[data-v-f2649c45]{font-size:80%}.top-left[data-v-09ccd2d0]{top:0;left:0}div[data-v-09ccd2d0] svg g{cursor:pointer;transition-property:fill,stroke;transition-duration:.25s;transition-timing-function:ease-in-out}.v-enter-active[data-v-09ccd2d0]{transition:opacity .25s ease-in-out}.v-leave-active[data-v-09ccd2d0]{transition:opacity 0ms ease-in-out}.v-enter-from[data-v-09ccd2d0],.v-leave-to[data-v-09ccd2d0]{opacity:0}.v-leave-from[data-v-09ccd2d0],.v-enter-to[data-v-09ccd2d0]{opacity:1}.actions-bar[data-v-0310f66a]{position:absolute;flex-wrap:wrap}.actions-bar>div[data-v-0310f66a]{flex-basis:25%}.actions-bar>div[data-v-0310f66a]:last-child{flex-basis:50%}.actions-bar[data-v-0310f66a]{opacity:.5;transition:opacity .5s ease}.actions-bar[data-v-0310f66a]:hover,.mobile .actions-bar[data-v-0310f66a]{opacity:1}.mobile .actions-bar.compact[data-v-0310f66a]{position:relative}.mobile .actions-bar>div[data-v-0310f66a]{flex-basis:50%}.mobile .actions-bar>div[data-v-0310f66a]:last-child{flex-basis:100%}.hover-bar[data-v-0310f66a]{position:absolute}.top-left[data-v-0310f66a]{top:0;left:0}.bottom-right[data-v-0310f66a],.bottom-right-compact[data-v-0310f66a]{bottom:0;right:0}.mobile .bottom-right-compact[data-v-0310f66a]{bottom:inherit;right:0}.v-enter-from[data-v-0310f66a]{opacity:0}.v-enter-active[data-v-0310f66a]{transition:opacity .5s ease}.v-enter-to[data-v-0310f66a]{opacity:1}.sunsim-time-label[data-v-d5a3d3f8]{color:#000;vertical-align:top}.sunsim-date[data-v-d5a3d3f8]{background:#fff;border-radius:30px;min-height:36px;min-width:170px;display:flex;align-content:center;white-space:nowrap}.day-selector[data-v-d5a3d3f8]{margin-top:0}.day-selector[data-v-d5a3d3f8] .v-field__outline{display:none}.day-selector[data-v-d5a3d3f8] .v-field__input{padding-top:2px}.day-selector[data-v-d5a3d3f8] .v-field__append-inner{padding-top:5px!important}.day-selector.v-text-field[data-v-d5a3d3f8] .v-input__control>.v-input__slot:before{border-style:none}.day-selector.v-text-field[data-v-d5a3d3f8] .v-input__control>.v-input__slot:after{border-style:none}.sunsim-slider[data-v-d5a3d3f8] .v-slider-track__background{background:linear-gradient(270deg,#8183c2,#ffb9b9 20.01%,#b2dfff 40.1%,#b2dfff 59.85%,#ffba96 79.96%,#8183c2)!important}.sunsim-bar-wrapper[data-v-d5a3d3f8]{display:flex;position:absolute;width:60%;min-width:400px;top:12px;left:0;z-index:3;touch-action:none;pointer-events:none}.sunsim-wrapper[data-v-d5a3d3f8]{width:100%;background:#fff;border-radius:30px;padding:5px;min-height:16px;z-index:3}.sunsim-bar-wrapper .sunsim-date[data-v-d5a3d3f8]{margin-right:12px;margin-left:12px}.sunsim-wrapper[data-v-d5a3d3f8],.sunsim-date[data-v-d5a3d3f8]{touch-action:auto;pointer-events:all}.sunsim-wrapper .mdi-white-balance-sunny[data-v-d5a3d3f8]{color:#ffab02;vertical-align:baseline;font-size:20px}@media only screen and (max-width: 980px) and (min-width: 500px){.sunsim-bar-wrapper[data-v-d5a3d3f8]{top:101%;width:100%}.sunsim-bar-wrapper .sunsim-date[data-v-d5a3d3f8]{margin-left:0}}@media only screen and (max-width: 980px) and (min-width: 500px) and (orientation: landscape){.sunsim-bar-wrapper[data-v-d5a3d3f8]{top:calc(100% + 8px);width:100%}.sunsim-bar-wrapper .sunsim-date[data-v-d5a3d3f8]{margin-left:0}.sunsim-bar-wrapper .sunsim-date[data-v-d5a3d3f8],.sunsim-bar-wrapper .sunsim-wrapper[data-v-d5a3d3f8]{box-shadow:0 0 7px 1px #aaa}}@media only screen and (max-width: 500px){.sunsim-bar-wrapper[data-v-d5a3d3f8]{height:calc(100% + 84px);top:0;width:100%;flex-direction:column;justify-content:space-between;margin:-42px 0 0;padding:0;left:0;z-index:0;min-width:100%}.sunsim-bar-wrapper .sunsim-date[data-v-d5a3d3f8]{margin-right:0;margin-left:0}.sunsim-bar-wrapper .sunsim-date[data-v-d5a3d3f8],.sunsim-bar-wrapper .sunsim-wrapper[data-v-d5a3d3f8]{width:100%;border-radius:0;left:0;margin-left:0!important;box-shadow:0 0 7px 1px #aaa}}.image-instance[data-v-8d357c5f]{position:absolute;width:100%;opacity:0}.image-instance.active[data-v-8d357c5f]{opacity:1}.north-indicator[data-v-9be2e160]{position:absolute;right:0;top:0;height:42px;width:42px;margin-top:12px;margin-right:8px}.image-container[data-v-9be2e160]{position:relative}.image-instances[data-v-9be2e160]{position:relative;width:100%;height:100%}canvas[data-v-9be2e160]{position:absolute;left:0;top:0;z-index:2;opacity:0}.fill-parent[data-v-9be2e160]{position:absolute;top:0;bottom:0;left:0;right:0}.svg-container[data-v-9be2e160]{transition-property:opacity;transition-duration:.25s;transition-timing-function:ease-in-out}.svg-container[data-v-9be2e160],svg[data-v-9be2e160]{position:absolute;left:0;top:0;width:100%;height:100%;z-index:10000}svg g[data-v-9be2e160] path{cursor:pointer;stroke-width:inherit!important;stroke-opacity:inherit!important;stroke:inherit!important;fill:inherit!important;fill-opacity:inherit!important;transition-property:fill-opacity,fill;transition-duration:.25s;transition-timing-function:ease-in-out}svg g.restricted[data-v-9be2e160] path{cursor:default!important}@media only screen and (max-width: 980px) and (min-width: 500px) and (orientation: landscape){div.image-container[data-v-9be2e160]{margin-top:44px}}@media only screen and (max-width: 500px){div.image-container[data-v-9be2e160]{margin-top:44px;margin-bottom:44px}}.overlay[data-v-9e4cdd0e]{z-index:1!important;opacity:1;transition-property:opacity;transition-duration:.25s;transition-timing-function:ease-in-out}.north-indicator[data-v-5402374e]{position:absolute;right:0;top:0;height:42px;width:42px;margin-top:12px;margin-right:8px}.image-container[data-v-5402374e]{position:relative}.image-instances[data-v-5402374e]{position:relative;width:100%;height:100%}canvas[data-v-5402374e]{position:absolute;left:0;top:0;z-index:2;opacity:0}.fill-parent[data-v-5402374e]{position:absolute;top:0;bottom:0;left:0;right:0}@media only screen and (max-width: 980px) and (min-width: 500px) and (orientation: landscape){div.image-container[data-v-5402374e]{margin-top:44px}}@media only screen and (max-width: 500px){div.image-container[data-v-5402374e]{margin-top:44px;margin-bottom:44px}}img[data-v-9866b8c2]{position:relative;display:block;z-index:1}.small[data-v-42a733f4]{font-size:80%}.top-left[data-v-61c8ae69]{top:0;left:0}div[data-v-61c8ae69] svg g{cursor:pointer;transition-property:fill,stroke;transition-duration:.25s;transition-timing-function:ease-in-out}.v-enter-active[data-v-61c8ae69]{transition:opacity .25s ease-in-out}.v-leave-active[data-v-61c8ae69]{transition:opacity 0ms ease-in-out}.v-enter-from[data-v-61c8ae69],.v-leave-to[data-v-61c8ae69]{opacity:0}.v-leave-from[data-v-61c8ae69],.v-enter-to[data-v-61c8ae69]{opacity:1}.actions-bar[data-v-47df87bc]{position:absolute;flex-wrap:wrap}.actions-bar>div[data-v-47df87bc]{flex-basis:25%}.actions-bar>div[data-v-47df87bc]:last-child{flex-basis:50%}.actions-bar[data-v-47df87bc]:hover,.mobile .actions-bar[data-v-47df87bc]{opacity:1}.mobile .actions-bar.compact[data-v-47df87bc]{position:relative}.mobile .actions-bar>div[data-v-47df87bc]{flex-basis:50%}.mobile .actions-bar>div[data-v-47df87bc]:last-child{flex-basis:100%}.hover-bar[data-v-47df87bc]{position:absolute}.top-left[data-v-47df87bc]{top:0;left:0}.bottom-right[data-v-47df87bc],.bottom-right-compact[data-v-47df87bc]{bottom:0;right:0}.mobile .bottom-right-compact[data-v-47df87bc]{bottom:inherit;right:0}.v-enter-from[data-v-47df87bc]{opacity:0}.v-enter-active[data-v-47df87bc]{transition:opacity .5s ease}.v-enter-to[data-v-47df87bc]{opacity:1}.actions-bar[data-v-47df87bc]{opacity:.5;transition:opacity .5s ease}.actions-bar[data-v-47df87bc]:hover{opacity:1}#player-wrapper[data-v-09c18ddf]{position:relative;width:100%;height:100%}#player-sizer[data-v-09c18ddf]{width:100%;height:100%;display:flex;justify-content:center;align-items:center}div#main-canvas[data-v-09c18ddf]{width:100%;height:100%}.player-control[data-v-09c18ddf]{display:flex;position:absolute;z-index:3}#controls-top-left[data-v-09c18ddf]{top:10px;left:10px}#controls-top-center[data-v-09c18ddf]{top:10px;left:50%;transform:translate(-50%);z-index:4;flex-direction:column}#controls-top-right[data-v-09c18ddf]{top:10px;right:10px;justify-content:flex-end;align-content:flex-end}#controls-center-left[data-v-09c18ddf]{left:10px;top:50%;transform:translateY(-50%)}#controls-center-center[data-v-09c18ddf]{top:50%;left:50%;transform:translate(-50%,-50%);align-items:center;justify-content:space-around;z-index:20}#controls-center-right[data-v-09c18ddf]{top:50%;right:10px;transform:translateY(-50%);justify-content:flex-end;align-items:center}#controls-bottom-left[data-v-09c18ddf]{bottom:10px;left:10px;z-index:5}#controls-bottom-center[data-v-09c18ddf]{bottom:10px;left:50%;transform:translate(-50%);align-items:flex-end;justify-content:space-around;z-index:4}#controls-bottom-right[data-v-09c18ddf]{bottom:10px;right:10px;justify-content:flex-end;align-content:flex-end;align-items:flex-end;z-index:5}.btn-placeholder[data-v-5ce91d8e]{width:36px;height:36px}.v-btn[data-v-5ce91d8e]{background-color:#fff;pointer-events:all;cursor:auto}.floor-level-label[data-v-5ce91d8e]{text-transform:capitalize}.v-image[data-v-eea453df]{background-color:#aaa}.interior-selector-list[data-v-eea453df]{box-shadow:none!important;padding:10px;background:transparent!important}.interior-selector-list-item[data-v-eea453df]{background-color:#fff;border:2px solid #fff;transition:transform .2s cubic-bezier(.17,.67,.83,.67);margin-top:10px}.interior-selector-list-item.active[data-v-eea453df]{border:2px solid #a6d8a8}.interior-selector-list-item[data-v-eea453df]:hover{transform:translate(-5px);border:2px solid #4caf50}.compass-needle{transition:transform .5s;transition-timing-function:ease-out}@media screen and (max-width: 600px){.compass-wrapper{scale:.9}}.clock-face[data-v-cd73fd81]{margin-left:10px;height:50px;width:50px;background-color:#fff;border-radius:50%}.clock-value[data-v-cd73fd81]{font-size:11px}.clock-icon[data-v-cd73fd81]{width:18px}@media screen and (max-width: 600px){.clock-face[data-v-cd73fd81]{margin-left:0;scale:.8}}.fill-grey[data-v-f59c4942]{fill:#afafaf}.box.col[data-v-a5e7f474]{max-width:130px;padding:0 10px}.tutorial-icon svg[data-v-a5e7f474]{border:1px solid #e0e0e0;border-radius:5px;width:100px;height:50px}.text[data-v-a5e7f474]{font-size:.8em;line-height:1.1}.tablet-mobile-content[data-v-a5e7f474]{min-width:240px}.tablet-mobile-content .box.col[data-v-a5e7f474]{margin:2px}.tablet-mobile-content .tutorial-icon svg[data-v-a5e7f474]{border:none;width:60px;height:30px}.tutorial-buttons .v-messages[data-v-a5e7f474]{display:none!important}.settings-panel[data-v-bd4f66c3]{min-width:500px;height:500px;overflow-y:scroll}form#settings-ui-form[data-v-bd4f66c3]{background:#fff9;border-radius:5px;padding:10px}#settings-ui-form .form-inputs[data-v-bd4f66c3]{height:60vh;overflow-y:scroll;padding-bottom:50px;scrollbar-color:#0c0e4a transparent;scrollbar-width:thin;padding-right:20px}#moveableDiv[data-v-30593022]{position:fixed;z-index:15;background-color:#fff;border:1px solid #d3d3d3}#moveableDivHeader[data-v-30593022]{cursor:move;z-index:10}.big[data-v-30593022]{width:512px;height:440px;top:50%;left:50%;transform:translate(-50%,-50%)}.small[data-v-30593022]{width:250px;height:300px;bottom:10px;right:10px;transform:translate(0)}.sizer[data-v-30593022]{overflow:hidden;min-width:250px;min-height:300px;max-width:700px;max-height:531px}.resize-icon[data-v-30593022]{position:absolute;top:5px;right:5px;z-index:11}.rotate-icon[data-v-30593022]{position:absolute;top:5px;right:45px;z-index:12}.close-icon[data-v-30593022]{position:absolute;top:5px;left:5px;z-index:11}.moveable-body[data-v-30593022]{z-index:1}.moveable-footer[data-v-30593022]{width:100%;height:50px;margin-bottom:10px;background:#fff;z-index:2}.filler-div[data-v-30593022]{display:none}@media only screen and (max-width: 600px){.sizer[data-v-30593022]{overflow:hidden;max-width:90%;max-height:80vh}}.stop1{stop-color:#fff}.stop2{stop-color:#fff;stop-opacity:0}.stop3{stop-color:transparent}.minimap-container[data-v-1a6129d7]{position:relative}.web-minimap[data-v-1a6129d7]{position:relative;width:512px;height:385px;overflow:hidden;transition:transform .5s ease-in}@media (max-width: 650px){.web-minimap[data-v-1a6129d7]{scale:.7}}@media (max-width: 480px){.web-minimap[data-v-1a6129d7]{scale:.5}}.minimap-background-image[data-v-1a6129d7]{position:absolute;width:100%;height:100%}.single-camera-marker[data-v-1a6129d7]{position:absolute;width:7px;height:7px;background:#fff;border-radius:50%;z-index:2;transform:translate(-50%,-50%);border:0px}.rotation-marker-component[data-v-1a6129d7]{z-index:3;position:absolute;width:80px;height:80px;transform:translate(-50%,-50%)}.center-pivot[data-v-1a6129d7]{position:absolute;width:100%;height:100%}.minimap-compass[data-v-552c1d19]{width:50px}.ss-wrapper[data-v-dcf60a40]{display:flex;flex-direction:row;justify-content:space-between;margin:0 10px;position:relative;z-index:100}.sun-icon[data-v-dcf60a40]{width:10%}.slider[data-v-dcf60a40]{display:flex;flex-direction:column;flex:1 1 auto;padding:3px 0}i.v-icon.notranslate.mdi.mdi-white-balance-sunny.theme--light[data-v-dcf60a40]{font-size:40px;color:#ffab02;padding:5px}.time-label[data-v-dcf60a40]{padding:0;display:inline-block;margin-top:-10px;margin-left:50px}.minimap-compass[data-v-898e645b]{position:absolute;right:5px;top:50px;z-index:11}.small[data-v-20d3a8f3]{font-size:80%}[data-v-20d3a8f3] .v-input{margin-top:-6px}[data-v-20d3a8f3] .v-slider-track{background:linear-gradient(270deg,#8183c2,#ffb9b9 20.01%,#b2dfff 40.1%,#b2dfff 59.85%,#ffba96 79.96%,#8183c2)!important}[data-v-20d3a8f3] .v-slider-track__background,[data-v-20d3a8f3] .v-slider-track__fill{background:transparent}.v-card[data-v-0345b87c]{transition:box-shadow .3s ease-in-out;border:1px solid transparent}[data-v-0345b87c] .v-slide-group__content{justify-content:center}[data-v-0345b87c] .v-slide-group__next--disabled,[data-v-0345b87c] .v-slide-group__prev--disabled{pointer-events:all!important}.align-baseline[data-v-0345b87c]{align-items:baseline}.active-apt[data-v-0345b87c]{border:1.5px solid #4caf50!important}.v-image[data-v-0345b87c]{border-radius:0!important}.single-waypoint[data-v-0345b87c]{width:81px;height:54px}.mobile.carousel-button[data-v-0345b87c]{scale:.7}.mobileWaypoint .single-waypoint[data-v-0345b87c]{margin-top:5px!important;width:63px;height:42px;scale:.95}.desktopWaypointWrapper[data-v-0345b87c]{max-width:50vw}.mobileWaypointWrapper[data-v-0345b87c]{max-width:100vw}#share-btns-wrapper button[data-v-b6e473f1]{margin:0 8px}.v-btn[data-v-b6e473f1]{background-color:#fff;pointer-events:all}.img-div[data-v-31489804]{position:absolute;display:block;height:100%;width:100%;background-size:cover;background-position:center center;z-index:2;left:0;top:0}.static-image-wrapper[data-v-31489804]{background:#fff}.compass-wrapper[data-v-65e6ae43]{width:50px}.player-and-components-wrapper[data-v-65e6ae43]{position:relative;width:100%;height:100%}.static-image[data-v-65e6ae43]{position:absolute;top:0;left:0;width:100%;height:auto}button.v-btn[data-v-65e6ae43]{background:#fff}div#controls-bottom-center>div[data-v-65e6ae43]{display:flex;flex-direction:column;align-items:center}.player-error[data-v-65e6ae43]{min-height:400px;display:flex;align-items:center;justify-content:space-around;background:#ededed}@media only screen and (max-width: 600px){#btn-fullscreen[data-v-65e6ae43]{display:none}}@media all and (orientation: landscape) and (max-height: 499px){#btn-fullscreen[data-v-65e6ae43]{display:none}}.settings-panel[data-v-65e6ae43]{position:absolute;top:0;left:0;z-index:10;width:500px;transform:scale(.8);transform-origin:left}.virtual-tour-wrapper[data-v-65e6ae43],.v-player.platform-desktop[data-v-65e6ae43]{width:100%;height:100%}@media screen and (min-width: 900px){.v-player.platform-desktop[data-v-65e6ae43]{height:100%}}@media screen and (min-width: 1600px){.v-player.platform-desktop[data-v-65e6ae43]{height:100%}}.v-player.platform-mobile[data-v-65e6ae43]{width:100%;height:calc(100% - 60px)}.waypoint-carousel.below-player[data-v-65e6ae43]{position:relative;height:50px}@media only screen and (max-width: 960px){#btn-fullscreen[data-v-65e6ae43]{display:none}}.render-version[data-v-65e6ae43]{position:absolute;bottom:0;left:0;color:#fff;background:#000;font-weight:700;font-size:12px;padding:0 5px;z-index:3}#player-wrapper[data-v-5fdd1e05]{position:relative;overflow:hidden}#player-sizer[data-v-5fdd1e05]{display:flex;justify-content:center;align-items:center;overflow:hidden}.player-control[data-v-5fdd1e05]{display:flex;position:absolute;z-index:3}#controls-top-left[data-v-5fdd1e05]{top:10px;left:10px}#controls-top-center[data-v-5fdd1e05]{top:10px;left:50%;transform:translate(-50%);z-index:4}#controls-top-right[data-v-5fdd1e05]{top:10px;right:10px;justify-content:flex-end;align-content:flex-end}#controls-center-left[data-v-5fdd1e05]{left:10px;top:50%;transform:translateY(-50%)}#controls-center-center[data-v-5fdd1e05]{top:50%;left:50%;transform:translate(-50%,-50%);align-items:center;justify-content:space-around;z-index:20}#controls-center-right[data-v-5fdd1e05]{top:50%;right:10px;transform:translateY(-50%);justify-content:flex-end;align-items:center}#controls-bottom-left[data-v-5fdd1e05]{bottom:10px;left:10px;z-index:5}#controls-bottom-center[data-v-5fdd1e05]{bottom:10px;left:50%;transform:translate(-50%);align-items:flex-end;justify-content:space-around;z-index:4}#controls-bottom-right[data-v-5fdd1e05]{bottom:10px;right:10px;justify-content:flex-end;align-content:flex-end;align-items:flex-end;z-index:5}.compass-wrapper[data-v-040ac08f]{width:50px}.player-and-components-wrapper[data-v-040ac08f]{position:relative}.static-image[data-v-040ac08f]{position:absolute;top:0;left:0;width:100%;height:auto}button.v-btn[data-v-040ac08f]{background:#fff}.waypoint-carousel.full-screen[data-v-040ac08f]{scale:.5}div#controls-bottom-center>div[data-v-040ac08f]{display:flex;flex-direction:column;align-items:center}.player-error[data-v-040ac08f]{min-height:400px;display:flex;align-items:center;justify-content:space-around;background:#ededed}@media only screen and (max-width: 600px){#btn-fullscreen[data-v-040ac08f]{display:none}}@media all and (orientation: landscape) and (max-height: 499px){#btn-fullscreen[data-v-040ac08f]{display:none}}.mss-image[data-v-040ac08f]{min-height:20vh;max-height:100vh;min-width:80%;max-width:100%}.minimap-compass[data-v-03a5584c]{position:absolute;right:5px;top:50px;z-index:11}img[data-v-a12a9cdb]{position:relative;display:block;z-index:1}img[data-v-ea8553ab]{position:relative;display:block;z-index:3}.top-left[data-v-ea8553ab]{top:0;left:0}[data-v-743f5faf] .v-btn__content{text-transform:none}.camera-name[data-v-ff87e7cd]{position:absolute;display:inline-block;padding-top:5px!important;width:100%;text-align:center;top:0;left:50%;opacity:0;border-radius:3px 3px 0 0;outline:1px solid white;transform:translate(-50%) translateY(-8px);pointer-events:none;transition-duration:.1s;transition-timing-function:ease-in-out;transition-property:opacity,transform}.still-camera[data-v-ff87e7cd]{position:relative;display:inline-block;width:80px;height:45px;margin-left:8px;border:1px solid white;border-radius:3px;cursor:pointer;background-size:cover;background-position:center center;transition-duration:.1s;transition-timing-function:ease-in-out;transition-property:width,height}.still-camera[data-v-ff87e7cd]:first-child{margin-left:0}.mobile .still-camera[data-v-ff87e7cd]{border:none}.disabled .still-camera[data-v-ff87e7cd]{opacity:.5}.enabled:not(.mobile) .still-camera[data-v-ff87e7cd]:hover{width:160px;height:90px}.enabled:not(.mobile) .still-camera:hover .camera-name[data-v-ff87e7cd]{opacity:1;transform:translate(-50%) translateY(-100%)}.icon-wrapper[data-v-ff87e7cd]{position:absolute;top:2px;right:2px;width:20px;height:20px;border-radius:10px;background-color:#fff;display:flex;justify-content:center;align-items:center}.small[data-v-283e7169]{font-size:80%}[data-v-283e7169] .v-input{margin-top:-2px}.mobile[data-v-283e7169] .v-input{margin-top:-6px}[data-v-283e7169] .v-slider-track{background:linear-gradient(270deg,#8183c2,#ffb9b9 20.01%,#b2dfff 40.1%,#b2dfff 59.85%,#ffba96 79.96%,#8183c2)!important}[data-v-283e7169] .v-slider-track__background,[data-v-283e7169] .v-slider-track__fill{background:transparent}.top-left[data-v-354134d9]{top:0;left:0}div[data-v-354134d9] svg g{cursor:pointer;transition-property:fill,stroke;transition-duration:.25s;transition-timing-function:ease-in-out}.v-enter-active[data-v-354134d9]{transition:opacity .25s ease-in-out}.v-leave-active[data-v-354134d9]{transition:opacity 0ms ease-in-out}.v-enter-from[data-v-354134d9],.v-leave-to[data-v-354134d9]{opacity:0}.v-leave-from[data-v-354134d9],.v-enter-to[data-v-354134d9]{opacity:1}.actions-bar[data-v-fb4852d5]{position:absolute}.mobile .actions-bar[data-v-fb4852d5]:not(.persistent){position:relative}.top-left[data-v-fb4852d5]{top:0;left:0}.top-right[data-v-fb4852d5]{top:0;right:0}.bottom-left[data-v-fb4852d5]{bottom:0;left:0}.v-enter-from[data-v-fb4852d5]{opacity:0}.v-enter-active[data-v-fb4852d5]{transition:opacity .5s ease}.v-enter-to[data-v-fb4852d5]{opacity:1}.render-version[data-v-fb4852d5]{position:absolute;bottom:0;left:0;color:#fff;background:#000;font-weight:700;font-size:12px;padding:0 5px;z-index:3}
|
|
1
|
+
@media (hover: hover){.hover-check[data-v-eb9b348d]{display:none}}#canvas[data-v-27d7323f]{position:absolute;top:0;width:100%;-webkit-user-select:none;user-select:none;touch-action:none;padding-top:56.25%}#canvas-mask[data-v-27d7323f]{position:absolute;top:0;max-width:100%;z-index:4;-webkit-user-select:none;user-select:none}@media only screen and (min-width: 1280px){#canvas[data-v-27d7323f]{border-radius:10px}}#container[data-v-e6c054c7]{position:absolute;top:0;width:100%;-webkit-user-select:none;user-select:none;touch-action:none;padding-top:56.25%}.svg-container[data-v-e6c054c7]{transition-property:opacity;transition-duration:.25s;transition-timing-function:ease-in-out}.svg-container[data-v-e6c054c7],svg[data-v-e6c054c7]{position:absolute;left:0;top:0;width:100%;height:100%;z-index:10000}svg g[data-v-e6c054c7] path{cursor:pointer;stroke-width:inherit!important;stroke-opacity:inherit!important;stroke:inherit!important;fill:inherit!important;fill-opacity:inherit!important;transition-property:fill-opacity,fill;transition-duration:.25s;transition-timing-function:ease-in-out}@media only screen and (min-width: 1280px){#canvas[data-v-e6c054c7]{border-radius:10px}}.v-btn[data-v-44ed308e]{background-color:#fff}.frame-container[data-v-0c291cb9]{position:relative;max-width:100%;top:0;left:0;bottom:185px;padding-top:56%;z-index:1;overflow:hidden}.frame-image[data-v-0c291cb9]{position:absolute;top:0;width:100%;height:100%}.frame-image img[data-v-0c291cb9]{min-width:100%;max-width:100%;z-index:0}#image-stack picture[data-v-0c291cb9]{visibility:hidden}#image-stack picture.show[data-v-0c291cb9]{visibility:visible}.fill-parent[data-v-0c291cb9]{position:absolute;top:0;bottom:0;left:0;right:0}.floating-card[data-v-7d5e6067]{position:absolute;left:0;top:0;z-index:10;display:flex;transition:transform .1s ease-in-out}.is-not-hoverable[data-v-7d5e6067]{position:relative;width:100%}.v-dialog__content[data-v-7d5e6067]{align-items:flex-start}.zoom-box-container[data-v-3e334a46]{width:100%;height:100%;left:0;top:0;overflow:hidden;-webkit-user-select:none;user-select:none;touch-action:none}.zoom-box[data-v-3e334a46]{width:100%;height:100%;-webkit-user-select:none;user-select:none;touch-action:none}.interactive-viewer[data-v-34e2e7a2]{padding-top:56.65%;position:relative}.fill-parent[data-v-34e2e7a2]{position:absolute;top:0;bottom:0;left:0;right:0}.navigation[data-v-34e2e7a2]{position:absolute;width:100%;bottom:32px;z-index:99;padding:0 20px;display:flex;justify-content:center}@media only screen and (max-width: 900px){.navigation[data-v-34e2e7a2]{position:absolute;bottom:0;scale:.5;width:200%!important;transform:translate(-50%)}}img[data-v-dbbdc1e0]{position:relative;display:block;z-index:1}img[data-v-ecb88391]{position:relative;display:block;z-index:3}.top-left[data-v-ecb88391]{top:0;left:0}.small[data-v-f2649c45]{font-size:80%}.top-left[data-v-09ccd2d0]{top:0;left:0}div[data-v-09ccd2d0] svg g{cursor:pointer;transition-property:fill,stroke;transition-duration:.25s;transition-timing-function:ease-in-out}.v-enter-active[data-v-09ccd2d0]{transition:opacity .25s ease-in-out}.v-leave-active[data-v-09ccd2d0]{transition:opacity 0ms ease-in-out}.v-enter-from[data-v-09ccd2d0],.v-leave-to[data-v-09ccd2d0]{opacity:0}.v-leave-from[data-v-09ccd2d0],.v-enter-to[data-v-09ccd2d0]{opacity:1}.actions-bar[data-v-0310f66a]{position:absolute;flex-wrap:wrap}.actions-bar>div[data-v-0310f66a]{flex-basis:25%}.actions-bar>div[data-v-0310f66a]:last-child{flex-basis:50%}.actions-bar[data-v-0310f66a]{opacity:.5;transition:opacity .5s ease}.actions-bar[data-v-0310f66a]:hover,.mobile .actions-bar[data-v-0310f66a]{opacity:1}.mobile .actions-bar.compact[data-v-0310f66a]{position:relative}.mobile .actions-bar>div[data-v-0310f66a]{flex-basis:50%}.mobile .actions-bar>div[data-v-0310f66a]:last-child{flex-basis:100%}.hover-bar[data-v-0310f66a]{position:absolute}.top-left[data-v-0310f66a]{top:0;left:0}.bottom-right[data-v-0310f66a],.bottom-right-compact[data-v-0310f66a]{bottom:0;right:0}.mobile .bottom-right-compact[data-v-0310f66a]{bottom:inherit;right:0}.v-enter-from[data-v-0310f66a]{opacity:0}.v-enter-active[data-v-0310f66a]{transition:opacity .5s ease}.v-enter-to[data-v-0310f66a]{opacity:1}.sunsim-time-label[data-v-d5a3d3f8]{color:#000;vertical-align:top}.sunsim-date[data-v-d5a3d3f8]{background:#fff;border-radius:30px;min-height:36px;min-width:170px;display:flex;align-content:center;white-space:nowrap}.day-selector[data-v-d5a3d3f8]{margin-top:0}.day-selector[data-v-d5a3d3f8] .v-field__outline{display:none}.day-selector[data-v-d5a3d3f8] .v-field__input{padding-top:2px}.day-selector[data-v-d5a3d3f8] .v-field__append-inner{padding-top:5px!important}.day-selector.v-text-field[data-v-d5a3d3f8] .v-input__control>.v-input__slot:before{border-style:none}.day-selector.v-text-field[data-v-d5a3d3f8] .v-input__control>.v-input__slot:after{border-style:none}.sunsim-slider[data-v-d5a3d3f8] .v-slider-track__background{background:linear-gradient(270deg,#8183c2,#ffb9b9 20.01%,#b2dfff 40.1%,#b2dfff 59.85%,#ffba96 79.96%,#8183c2)!important}.sunsim-bar-wrapper[data-v-d5a3d3f8]{display:flex;position:absolute;width:60%;min-width:400px;top:12px;left:0;z-index:3;touch-action:none;pointer-events:none}.sunsim-wrapper[data-v-d5a3d3f8]{width:100%;background:#fff;border-radius:30px;padding:5px;min-height:16px;z-index:3}.sunsim-bar-wrapper .sunsim-date[data-v-d5a3d3f8]{margin-right:12px;margin-left:12px}.sunsim-wrapper[data-v-d5a3d3f8],.sunsim-date[data-v-d5a3d3f8]{touch-action:auto;pointer-events:all}.sunsim-wrapper .mdi-white-balance-sunny[data-v-d5a3d3f8]{color:#ffab02;vertical-align:baseline;font-size:20px}@media only screen and (max-width: 980px) and (min-width: 500px){.sunsim-bar-wrapper[data-v-d5a3d3f8]{top:101%;width:100%}.sunsim-bar-wrapper .sunsim-date[data-v-d5a3d3f8]{margin-left:0}}@media only screen and (max-width: 980px) and (min-width: 500px) and (orientation: landscape){.sunsim-bar-wrapper[data-v-d5a3d3f8]{top:calc(100% + 8px);width:100%}.sunsim-bar-wrapper .sunsim-date[data-v-d5a3d3f8]{margin-left:0}.sunsim-bar-wrapper .sunsim-date[data-v-d5a3d3f8],.sunsim-bar-wrapper .sunsim-wrapper[data-v-d5a3d3f8]{box-shadow:0 0 7px 1px #aaa}}@media only screen and (max-width: 500px){.sunsim-bar-wrapper[data-v-d5a3d3f8]{height:calc(100% + 84px);top:0;width:100%;flex-direction:column;justify-content:space-between;margin:-42px 0 0;padding:0;left:0;z-index:0;min-width:100%}.sunsim-bar-wrapper .sunsim-date[data-v-d5a3d3f8]{margin-right:0;margin-left:0}.sunsim-bar-wrapper .sunsim-date[data-v-d5a3d3f8],.sunsim-bar-wrapper .sunsim-wrapper[data-v-d5a3d3f8]{width:100%;border-radius:0;left:0;margin-left:0!important;box-shadow:0 0 7px 1px #aaa}}.image-instance[data-v-8d357c5f]{position:absolute;width:100%;opacity:0}.image-instance.active[data-v-8d357c5f]{opacity:1}.north-indicator[data-v-9be2e160]{position:absolute;right:0;top:0;height:42px;width:42px;margin-top:12px;margin-right:8px}.image-container[data-v-9be2e160]{position:relative}.image-instances[data-v-9be2e160]{position:relative;width:100%;height:100%}canvas[data-v-9be2e160]{position:absolute;left:0;top:0;z-index:2;opacity:0}.fill-parent[data-v-9be2e160]{position:absolute;top:0;bottom:0;left:0;right:0}.svg-container[data-v-9be2e160]{transition-property:opacity;transition-duration:.25s;transition-timing-function:ease-in-out}.svg-container[data-v-9be2e160],svg[data-v-9be2e160]{position:absolute;left:0;top:0;width:100%;height:100%;z-index:10000}svg g[data-v-9be2e160] path{cursor:pointer;stroke-width:inherit!important;stroke-opacity:inherit!important;stroke:inherit!important;fill:inherit!important;fill-opacity:inherit!important;transition-property:fill-opacity,fill;transition-duration:.25s;transition-timing-function:ease-in-out}svg g.restricted[data-v-9be2e160] path{cursor:default!important}@media only screen and (max-width: 980px) and (min-width: 500px) and (orientation: landscape){div.image-container[data-v-9be2e160]{margin-top:44px}}@media only screen and (max-width: 500px){div.image-container[data-v-9be2e160]{margin-top:44px;margin-bottom:44px}}.overlay[data-v-9e4cdd0e]{z-index:1!important;opacity:1;transition-property:opacity;transition-duration:.25s;transition-timing-function:ease-in-out}.north-indicator[data-v-5402374e]{position:absolute;right:0;top:0;height:42px;width:42px;margin-top:12px;margin-right:8px}.image-container[data-v-5402374e]{position:relative}.image-instances[data-v-5402374e]{position:relative;width:100%;height:100%}canvas[data-v-5402374e]{position:absolute;left:0;top:0;z-index:2;opacity:0}.fill-parent[data-v-5402374e]{position:absolute;top:0;bottom:0;left:0;right:0}@media only screen and (max-width: 980px) and (min-width: 500px) and (orientation: landscape){div.image-container[data-v-5402374e]{margin-top:44px}}@media only screen and (max-width: 500px){div.image-container[data-v-5402374e]{margin-top:44px;margin-bottom:44px}}img[data-v-9866b8c2]{position:relative;display:block;z-index:1}.small[data-v-42a733f4]{font-size:80%}.top-left[data-v-61c8ae69]{top:0;left:0}div[data-v-61c8ae69] svg g{cursor:pointer;transition-property:fill,stroke;transition-duration:.25s;transition-timing-function:ease-in-out}.v-enter-active[data-v-61c8ae69]{transition:opacity .25s ease-in-out}.v-leave-active[data-v-61c8ae69]{transition:opacity 0ms ease-in-out}.v-enter-from[data-v-61c8ae69],.v-leave-to[data-v-61c8ae69]{opacity:0}.v-leave-from[data-v-61c8ae69],.v-enter-to[data-v-61c8ae69]{opacity:1}.actions-bar[data-v-47df87bc]{position:absolute;flex-wrap:wrap}.actions-bar>div[data-v-47df87bc]{flex-basis:25%}.actions-bar>div[data-v-47df87bc]:last-child{flex-basis:50%}.actions-bar[data-v-47df87bc]:hover,.mobile .actions-bar[data-v-47df87bc]{opacity:1}.mobile .actions-bar.compact[data-v-47df87bc]{position:relative}.mobile .actions-bar>div[data-v-47df87bc]{flex-basis:50%}.mobile .actions-bar>div[data-v-47df87bc]:last-child{flex-basis:100%}.hover-bar[data-v-47df87bc]{position:absolute}.top-left[data-v-47df87bc]{top:0;left:0}.bottom-right[data-v-47df87bc],.bottom-right-compact[data-v-47df87bc]{bottom:0;right:0}.mobile .bottom-right-compact[data-v-47df87bc]{bottom:inherit;right:0}.v-enter-from[data-v-47df87bc]{opacity:0}.v-enter-active[data-v-47df87bc]{transition:opacity .5s ease}.v-enter-to[data-v-47df87bc]{opacity:1}.actions-bar[data-v-47df87bc]{opacity:.5;transition:opacity .5s ease}.actions-bar[data-v-47df87bc]:hover{opacity:1}#player-wrapper[data-v-09c18ddf]{position:relative;width:100%;height:100%}#player-sizer[data-v-09c18ddf]{width:100%;height:100%;display:flex;justify-content:center;align-items:center}div#main-canvas[data-v-09c18ddf]{width:100%;height:100%}.player-control[data-v-09c18ddf]{display:flex;position:absolute;z-index:3}#controls-top-left[data-v-09c18ddf]{top:10px;left:10px}#controls-top-center[data-v-09c18ddf]{top:10px;left:50%;transform:translate(-50%);z-index:4;flex-direction:column}#controls-top-right[data-v-09c18ddf]{top:10px;right:10px;justify-content:flex-end;align-content:flex-end}#controls-center-left[data-v-09c18ddf]{left:10px;top:50%;transform:translateY(-50%)}#controls-center-center[data-v-09c18ddf]{top:50%;left:50%;transform:translate(-50%,-50%);align-items:center;justify-content:space-around;z-index:20}#controls-center-right[data-v-09c18ddf]{top:50%;right:10px;transform:translateY(-50%);justify-content:flex-end;align-items:center}#controls-bottom-left[data-v-09c18ddf]{bottom:10px;left:10px;z-index:5}#controls-bottom-center[data-v-09c18ddf]{bottom:10px;left:50%;transform:translate(-50%);align-items:flex-end;justify-content:space-around;z-index:4}#controls-bottom-right[data-v-09c18ddf]{bottom:10px;right:10px;justify-content:flex-end;align-content:flex-end;align-items:flex-end;z-index:5}.btn-placeholder[data-v-5ce91d8e]{width:36px;height:36px}.v-btn[data-v-5ce91d8e]{background-color:#fff;pointer-events:all;cursor:auto}.floor-level-label[data-v-5ce91d8e]{text-transform:capitalize}.v-image[data-v-be1645c7]{background-color:#aaa}.interior-selector-list[data-v-be1645c7]{box-shadow:none!important;padding:10px;background:transparent!important}.interior-selector-list-item[data-v-be1645c7]{background-color:#fff;border:2px solid #fff;transition:transform .2s cubic-bezier(.17,.67,.83,.67);margin-top:10px}.interior-selector-list-item.active[data-v-be1645c7]{border:2px solid #a6d8a8}.interior-selector-list-item[data-v-be1645c7]>.v-list-item__content{overflow:visible!important}.interior-selector-list-item[data-v-be1645c7]:hover{transform:translate(-5px);border:2px solid #4caf50}.compass-needle{transition:transform .5s;transition-timing-function:ease-out}@media screen and (max-width: 600px){.compass-wrapper{scale:.9}}.clock-face[data-v-cd73fd81]{margin-left:10px;height:50px;width:50px;background-color:#fff;border-radius:50%}.clock-value[data-v-cd73fd81]{font-size:11px}.clock-icon[data-v-cd73fd81]{width:18px}@media screen and (max-width: 600px){.clock-face[data-v-cd73fd81]{margin-left:0;scale:.8}}.fill-grey[data-v-f59c4942]{fill:#afafaf}.box.col[data-v-a5e7f474]{max-width:130px;padding:0 10px}.tutorial-icon svg[data-v-a5e7f474]{border:1px solid #e0e0e0;border-radius:5px;width:100px;height:50px}.text[data-v-a5e7f474]{font-size:.8em;line-height:1.1}.tablet-mobile-content[data-v-a5e7f474]{min-width:240px}.tablet-mobile-content .box.col[data-v-a5e7f474]{margin:2px}.tablet-mobile-content .tutorial-icon svg[data-v-a5e7f474]{border:none;width:60px;height:30px}.tutorial-buttons .v-messages[data-v-a5e7f474]{display:none!important}.settings-panel[data-v-bd4f66c3]{min-width:500px;height:500px;overflow-y:scroll}form#settings-ui-form[data-v-bd4f66c3]{background:#fff9;border-radius:5px;padding:10px}#settings-ui-form .form-inputs[data-v-bd4f66c3]{height:60vh;overflow-y:scroll;padding-bottom:50px;scrollbar-color:#0c0e4a transparent;scrollbar-width:thin;padding-right:20px}#moveableDiv[data-v-bcb55a2c]{position:fixed;z-index:15;background-color:#fff;border:1px solid #d3d3d3;max-width:80vw;max-height:80vh}.anchor[data-v-bcb55a2c]{cursor:move}.sizer[data-v-bcb55a2c]{overflow:hidden;min-width:250px;min-height:300px;max-width:1920px;max-height:1440px}.header-slot[data-v-bcb55a2c]{z-index:3}.body-slot[data-v-bcb55a2c]{z-index:1}.footer-slot[data-v-bcb55a2c]{z-index:3}.big[data-v-bcb55a2c]{width:512px;height:440px;top:50%;left:50%;transform:translate(-50%,-50%)}.bigger[data-v-bcb55a2c]{width:768px;height:660px;top:50%;left:50%;transform:translate(-50%,-50%)}.small[data-v-bcb55a2c]{width:250px;height:300px;bottom:10px;right:10px;transform:translate(0)}.moveable-body[data-v-bcb55a2c]{padding-bottom:50px;height:100%;overflow:hidden}.moveable-footer[data-v-bcb55a2c]{position:absolute;bottom:0;width:100%;height:50px;background:#fff;z-index:2}@media only screen and (max-width: 600px){.sizer[data-v-bcb55a2c]{overflow:hidden;max-width:90%;max-height:80vh}}.stop1{stop-color:#fff}.stop2{stop-color:#fff;stop-opacity:0}.stop3{stop-color:transparent}.minimap-container[data-v-a2299a05]{position:relative}.web-minimap[data-v-a2299a05]{position:relative;width:512px;height:385px;overflow:hidden;transition:transform .2s ease-in}@media (max-width: 650px){.web-minimap[data-v-a2299a05]{scale:.7}}@media (max-width: 480px){.web-minimap[data-v-a2299a05]{scale:.5}}.minimap-background-image[data-v-a2299a05]{position:absolute;width:100%;height:100%}.single-camera-marker[data-v-a2299a05]{position:absolute;width:7px;height:7px;background:#fff;border-radius:50%;z-index:2;transform:translate(-50%,-50%);border:0px}.rotation-marker-component[data-v-a2299a05]{z-index:3;position:absolute;width:80px;height:80px;transform:translate(-50%,-50%)}.center-pivot[data-v-a2299a05]{position:absolute;width:100%;height:100%}.minimap-compass[data-v-d047dca8]{width:50px;border-radius:50%}.ss-wrapper[data-v-52f122f2]{display:flex;flex-direction:row;justify-content:space-between;margin:0 10px;position:relative;z-index:100}.sun-icon[data-v-52f122f2]{width:10%}.slider[data-v-52f122f2]{display:flex;flex-direction:column;flex:1 1 auto;padding:3px 0}i.v-icon.notranslate.mdi.mdi-white-balance-sunny.theme--light[data-v-52f122f2]{font-size:40px;color:#ffab02;padding:5px}.time-label[data-v-52f122f2]{padding:0;display:inline-block;margin-top:-10px;margin-left:50px}.minimap-compass[data-v-4809f3c8]{position:absolute;right:10px;top:10px;z-index:11}.small[data-v-20d3a8f3]{font-size:80%}[data-v-20d3a8f3] .v-input{margin-top:-6px}[data-v-20d3a8f3] .v-slider-track{background:linear-gradient(270deg,#8183c2,#ffb9b9 20.01%,#b2dfff 40.1%,#b2dfff 59.85%,#ffba96 79.96%,#8183c2)!important}[data-v-20d3a8f3] .v-slider-track__background,[data-v-20d3a8f3] .v-slider-track__fill{background:transparent}.v-card[data-v-0345b87c]{transition:box-shadow .3s ease-in-out;border:1px solid transparent}[data-v-0345b87c] .v-slide-group__content{justify-content:center}[data-v-0345b87c] .v-slide-group__next--disabled,[data-v-0345b87c] .v-slide-group__prev--disabled{pointer-events:all!important}.align-baseline[data-v-0345b87c]{align-items:baseline}.active-apt[data-v-0345b87c]{border:1.5px solid #4caf50!important}.v-image[data-v-0345b87c]{border-radius:0!important}.single-waypoint[data-v-0345b87c]{width:81px;height:54px}.mobile.carousel-button[data-v-0345b87c]{scale:.7}.mobileWaypoint .single-waypoint[data-v-0345b87c]{margin-top:5px!important;width:63px;height:42px;scale:.95}.desktopWaypointWrapper[data-v-0345b87c]{max-width:50vw}.mobileWaypointWrapper[data-v-0345b87c]{max-width:100vw}#share-btns-wrapper button[data-v-b6e473f1]{margin:0 8px}.v-btn[data-v-b6e473f1]{background-color:#fff;pointer-events:all}.img-div[data-v-31489804]{position:absolute;display:block;height:100%;width:100%;background-size:cover;background-position:center center;z-index:2;left:0;top:0}.static-image-wrapper[data-v-31489804]{background:#fff}.compass-wrapper[data-v-10fa14f1]{width:50px}.player-and-components-wrapper[data-v-10fa14f1]{position:relative;width:100%;height:100%}.static-image[data-v-10fa14f1]{position:absolute;top:0;left:0;width:100%;height:auto}button.v-btn[data-v-10fa14f1]{background:#fff}div#controls-bottom-center>div[data-v-10fa14f1]{display:flex;flex-direction:column;align-items:center}.player-error[data-v-10fa14f1]{min-height:400px;display:flex;align-items:center;justify-content:space-around;background:#ededed}@media only screen and (max-width: 600px){#btn-fullscreen[data-v-10fa14f1]{display:none}}@media all and (orientation: landscape) and (max-height: 499px){#btn-fullscreen[data-v-10fa14f1]{display:none}}.settings-panel[data-v-10fa14f1]{position:absolute;top:0;left:0;z-index:10;width:500px;transform:scale(.8);transform-origin:left}.virtual-tour-wrapper[data-v-10fa14f1],.v-player.platform-desktop[data-v-10fa14f1]{width:100%;height:100%}@media screen and (min-width: 900px){.v-player.platform-desktop[data-v-10fa14f1]{height:100%}}@media screen and (min-width: 1600px){.v-player.platform-desktop[data-v-10fa14f1]{height:100%}}.v-player.platform-mobile[data-v-10fa14f1]{width:100%;height:calc(100% - 60px)}.waypoint-carousel.below-player[data-v-10fa14f1]{position:relative;height:50px}@media only screen and (max-width: 960px){#btn-fullscreen[data-v-10fa14f1]{display:none}}.render-version[data-v-10fa14f1]{position:absolute;bottom:0;left:0;color:#fff;background:#000;font-weight:700;font-size:12px;padding:0 5px;z-index:3}#player-wrapper[data-v-5fdd1e05]{position:relative;overflow:hidden}#player-sizer[data-v-5fdd1e05]{display:flex;justify-content:center;align-items:center;overflow:hidden}.player-control[data-v-5fdd1e05]{display:flex;position:absolute;z-index:3}#controls-top-left[data-v-5fdd1e05]{top:10px;left:10px}#controls-top-center[data-v-5fdd1e05]{top:10px;left:50%;transform:translate(-50%);z-index:4}#controls-top-right[data-v-5fdd1e05]{top:10px;right:10px;justify-content:flex-end;align-content:flex-end}#controls-center-left[data-v-5fdd1e05]{left:10px;top:50%;transform:translateY(-50%)}#controls-center-center[data-v-5fdd1e05]{top:50%;left:50%;transform:translate(-50%,-50%);align-items:center;justify-content:space-around;z-index:20}#controls-center-right[data-v-5fdd1e05]{top:50%;right:10px;transform:translateY(-50%);justify-content:flex-end;align-items:center}#controls-bottom-left[data-v-5fdd1e05]{bottom:10px;left:10px;z-index:5}#controls-bottom-center[data-v-5fdd1e05]{bottom:10px;left:50%;transform:translate(-50%);align-items:flex-end;justify-content:space-around;z-index:4}#controls-bottom-right[data-v-5fdd1e05]{bottom:10px;right:10px;justify-content:flex-end;align-content:flex-end;align-items:flex-end;z-index:5}.compass-wrapper[data-v-040ac08f]{width:50px}.player-and-components-wrapper[data-v-040ac08f]{position:relative}.static-image[data-v-040ac08f]{position:absolute;top:0;left:0;width:100%;height:auto}button.v-btn[data-v-040ac08f]{background:#fff}.waypoint-carousel.full-screen[data-v-040ac08f]{scale:.5}div#controls-bottom-center>div[data-v-040ac08f]{display:flex;flex-direction:column;align-items:center}.player-error[data-v-040ac08f]{min-height:400px;display:flex;align-items:center;justify-content:space-around;background:#ededed}@media only screen and (max-width: 600px){#btn-fullscreen[data-v-040ac08f]{display:none}}@media all and (orientation: landscape) and (max-height: 499px){#btn-fullscreen[data-v-040ac08f]{display:none}}.mss-image[data-v-040ac08f]{min-height:20vh;max-height:100vh;min-width:80%;max-width:100%}img[data-v-a12a9cdb]{position:relative;display:block;z-index:1}img[data-v-ea8553ab]{position:relative;display:block;z-index:3}.top-left[data-v-ea8553ab]{top:0;left:0}[data-v-743f5faf] .v-btn__content{text-transform:none}.camera-name[data-v-ff87e7cd]{position:absolute;display:inline-block;padding-top:5px!important;width:100%;text-align:center;top:0;left:50%;opacity:0;border-radius:3px 3px 0 0;outline:1px solid white;transform:translate(-50%) translateY(-8px);pointer-events:none;transition-duration:.1s;transition-timing-function:ease-in-out;transition-property:opacity,transform}.still-camera[data-v-ff87e7cd]{position:relative;display:inline-block;width:80px;height:45px;margin-left:8px;border:1px solid white;border-radius:3px;cursor:pointer;background-size:cover;background-position:center center;transition-duration:.1s;transition-timing-function:ease-in-out;transition-property:width,height}.still-camera[data-v-ff87e7cd]:first-child{margin-left:0}.mobile .still-camera[data-v-ff87e7cd]{border:none}.disabled .still-camera[data-v-ff87e7cd]{opacity:.5}.enabled:not(.mobile) .still-camera[data-v-ff87e7cd]:hover{width:160px;height:90px}.enabled:not(.mobile) .still-camera:hover .camera-name[data-v-ff87e7cd]{opacity:1;transform:translate(-50%) translateY(-100%)}.icon-wrapper[data-v-ff87e7cd]{position:absolute;top:2px;right:2px;width:20px;height:20px;border-radius:10px;background-color:#fff;display:flex;justify-content:center;align-items:center}.small[data-v-283e7169]{font-size:80%}[data-v-283e7169] .v-input{margin-top:-2px}.mobile[data-v-283e7169] .v-input{margin-top:-6px}[data-v-283e7169] .v-slider-track{background:linear-gradient(270deg,#8183c2,#ffb9b9 20.01%,#b2dfff 40.1%,#b2dfff 59.85%,#ffba96 79.96%,#8183c2)!important}[data-v-283e7169] .v-slider-track__background,[data-v-283e7169] .v-slider-track__fill{background:transparent}.top-left[data-v-354134d9]{top:0;left:0}div[data-v-354134d9] svg g{cursor:pointer;transition-property:fill,stroke;transition-duration:.25s;transition-timing-function:ease-in-out}.v-enter-active[data-v-354134d9]{transition:opacity .25s ease-in-out}.v-leave-active[data-v-354134d9]{transition:opacity 0ms ease-in-out}.v-enter-from[data-v-354134d9],.v-leave-to[data-v-354134d9]{opacity:0}.v-leave-from[data-v-354134d9],.v-enter-to[data-v-354134d9]{opacity:1}.actions-bar[data-v-fb4852d5]{position:absolute}.mobile .actions-bar[data-v-fb4852d5]:not(.persistent){position:relative}.top-left[data-v-fb4852d5]{top:0;left:0}.top-right[data-v-fb4852d5]{top:0;right:0}.bottom-left[data-v-fb4852d5]{bottom:0;left:0}.v-enter-from[data-v-fb4852d5]{opacity:0}.v-enter-active[data-v-fb4852d5]{transition:opacity .5s ease}.v-enter-to[data-v-fb4852d5]{opacity:1}.render-version[data-v-fb4852d5]{position:absolute;bottom:0;left:0;color:#fff;background:#000;font-weight:700;font-size:12px;padding:0 5px;z-index:3}
|