@qispace/vue3-player 0.0.16 → 0.1.1
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/config/vite.config.d.ts +2 -0
- package/dist/vue-components/config/vite.config.dev.d.ts +2 -0
- package/dist/vue-components/config/vite.config.web-components.d.ts +2 -0
- package/dist/vue-components/src/components/apartmentChooser/VApartmentChooser.vue.d.ts +129 -0
- package/dist/vue-components/src/components/apartmentChooser/VApartmentChooserNavigation.vue.d.ts +46 -0
- package/dist/vue-components/src/components/apartmentChooser/VApartmentChooserRaster.vue.d.ts +77 -0
- package/dist/vue-components/src/components/apartmentChooser/VApartmentChooserRotator.vue.d.ts +43 -0
- package/dist/vue-components/src/components/apartmentChooser/VApartmentChooserSvg.vue.d.ts +77 -0
- package/dist/vue-components/src/components/apartmentChooser/index.d.ts +5 -0
- package/dist/vue-components/src/components/apartmentChooser/types.d.ts +13 -0
- package/dist/vue-components/src/components/buildingPicker/VBuildingChooser.vue.d.ts +93 -0
- package/dist/vue-components/src/components/buildingPicker/VBuildingChooserRaster.vue.d.ts +97 -0
- package/dist/vue-components/src/components/buildingPicker/VBuildingChooserRasterOverlay.vue.d.ts +46 -0
- package/dist/vue-components/src/components/buildingPicker/VBuildingChooserSceneImageStack.vue.d.ts +27 -0
- package/dist/vue-components/src/components/buildingPicker/VBuildingChooserSunSimControl.vue.d.ts +37 -0
- package/dist/vue-components/src/components/buildingPicker/VBuildingChooserSvg.vue.d.ts +102 -0
- package/dist/vue-components/src/components/buildingPicker/index.d.ts +6 -0
- package/dist/vue-components/src/components/buildingPicker/types.d.ts +11 -0
- package/dist/{components → vue-components/src/components}/index.d.ts +1 -1
- package/dist/vue-components/src/components/shared/VFloatingCard.vue.d.ts +30 -0
- package/dist/vue-components/src/components/shared/VHoverProbe.vue.d.ts +4 -0
- package/dist/vue-components/src/components/shared/VNorthDirection.vue.d.ts +15 -0
- package/dist/vue-components/src/components/shared/VZoomBox.vue.d.ts +60 -0
- package/dist/vue-components/src/components/shared/index.d.ts +4 -0
- package/dist/vue-components/src/components/virtualTour/VCompass.vue.d.ts +15 -0
- package/dist/vue-components/src/components/virtualTour/VDisclaimer.vue.d.ts +2 -0
- package/dist/vue-components/src/components/virtualTour/VFloorLevel.vue.d.ts +38 -0
- package/dist/vue-components/src/components/virtualTour/VFullScreenButton.vue.d.ts +19 -0
- package/dist/vue-components/src/components/virtualTour/VInteriorSelector.vue.d.ts +21 -0
- package/dist/vue-components/src/components/virtualTour/VPlayer.vue.d.ts +74 -0
- package/dist/vue-components/src/components/virtualTour/VSettingsUI.vue.d.ts +23 -0
- package/dist/vue-components/src/components/virtualTour/VSingleImage.vue.d.ts +31 -0
- package/dist/vue-components/src/components/virtualTour/VSocialShare.vue.d.ts +2 -0
- package/dist/vue-components/src/components/virtualTour/VTimeOfDay.vue.d.ts +34 -0
- package/dist/vue-components/src/components/virtualTour/VTutorial.vue.d.ts +19 -0
- package/dist/vue-components/src/components/virtualTour/VViewModeToggle.vue.d.ts +19 -0
- package/dist/vue-components/src/components/virtualTour/VVirtualTour.vue.d.ts +156 -0
- package/dist/vue-components/src/components/virtualTour/VWaypointCarousel.vue.d.ts +25 -0
- package/dist/vue-components/src/components/virtualTour/index.d.ts +1 -0
- package/dist/vue-components/src/components/virtualTour/minimap/VMiniMap.vue.d.ts +35 -0
- package/dist/vue-components/src/components/virtualTour/minimap/VMiniMapMap.vue.d.ts +25 -0
- package/dist/vue-components/src/components/virtualTour/minimap/VMinimapCompass.vue.d.ts +19 -0
- package/dist/vue-components/src/components/virtualTour/minimap/VMoveable.vue.d.ts +18 -0
- package/dist/vue-components/src/components/virtualTour/minimap/VRotationMarker.vue.d.ts +15 -0
- package/dist/vue-components/src/components/virtualTour/minimap/VSunSimulationSlider.vue.d.ts +23 -0
- package/dist/vue-components/src/components/virtualTour/minimap/index.d.ts +1 -0
- package/dist/vue-components/src/lib/apartmentChooser/BuildingViewerModel.d.ts +18 -0
- package/dist/vue-components/src/lib/apartmentChooser/RotationStep.d.ts +10 -0
- package/dist/vue-components/src/lib/apartmentChooser/SceneRotator.d.ts +10 -0
- package/dist/vue-components/src/lib/apartmentChooser/index.d.ts +3 -0
- package/dist/vue-components/src/lib/buildingPicker/BuildingMap.d.ts +7 -0
- package/dist/vue-components/src/lib/buildingPicker/BuildingPickerResourceProvider.d.ts +27 -0
- package/dist/vue-components/src/lib/buildingPicker/CanvasRaster.d.ts +8 -0
- package/dist/vue-components/src/lib/buildingPicker/DayOfYearSelector.d.ts +12 -0
- package/dist/vue-components/src/lib/buildingPicker/SampleRaster.d.ts +5 -0
- package/dist/vue-components/src/lib/buildingPicker/index.d.ts +5 -0
- package/dist/vue-components/src/lib/shared/BatchLoadTracker.d.ts +17 -0
- package/dist/vue-components/src/lib/shared/I18N.d.ts +7 -0
- package/dist/vue-components/src/lib/shared/ResourceLoader.d.ts +5 -0
- package/dist/vue-components/src/lib/shared/index.d.ts +3 -0
- package/dist/vue-components/src/lib/virtualTour/CameraSnapshot.d.ts +5 -0
- package/dist/vue-components/src/lib/virtualTour/FullscreenModel.d.ts +13 -0
- package/dist/vue-components/src/vue-components.d.ts +2 -0
- package/dist/vue-components/src/vue-components.esm.d.ts +4 -0
- package/dist/vue-components/src/web-components.d.ts +11 -0
- package/dist/vue-components/style.css +1 -0
- package/dist/vue-components/vue3-player.js +4744 -0
- package/dist/vue-components/vue3-player.umd.cjs +1 -0
- package/package.json +24 -14
- package/dist/components/apartmentChooser/QiApartmentChooser.vue.d.ts +0 -2
- package/dist/components/apartmentChooser/QiApartmentChooserNavigation.vue.d.ts +0 -51
- package/dist/components/apartmentChooser/QiApartmentChooserRaster.vue.d.ts +0 -2
- package/dist/components/apartmentChooser/QiApartmentChooserRotator.vue.d.ts +0 -65
- package/dist/components/apartmentChooser/QiApartmentChooserSvg.vue.d.ts +0 -2
- package/dist/components/buildingPicker/QiBuildingChooser.vue.d.ts +0 -121
- package/dist/components/buildingPicker/QiBuildingChooserRaster.vue.d.ts +0 -2
- package/dist/components/buildingPicker/QiBuildingChooserRasterOverlay.vue.d.ts +0 -53
- package/dist/components/buildingPicker/QiBuildingChooserSceneImageStack.vue.d.ts +0 -32
- package/dist/components/buildingPicker/QiBuildingChooserSunSimControl.vue.d.ts +0 -42
- package/dist/components/buildingPicker/QiBuildingChooserSvg.vue.d.ts +0 -2
- package/dist/components/shared/QiFloatingCard.vue.d.ts +0 -18
- package/dist/components/shared/QiHoverProbe.vue.d.ts +0 -4
- package/dist/components/shared/QiNorthDirection.vue.d.ts +0 -21
- package/dist/components/shared/QiZoomBox.vue.d.ts +0 -83
- package/dist/components/virtualTourV2/Compass.vue.d.ts +0 -22
- package/dist/components/virtualTourV2/Disclaimer.vue.d.ts +0 -4
- package/dist/components/virtualTourV2/FloorLevel.vue.d.ts +0 -27
- package/dist/components/virtualTourV2/FullScreenButton.vue.d.ts +0 -14
- package/dist/components/virtualTourV2/InteriorSelector.vue.d.ts +0 -24
- package/dist/components/virtualTourV2/Player.vue.d.ts +0 -82
- package/dist/components/virtualTourV2/SettingsUI.vue.d.ts +0 -105
- package/dist/components/virtualTourV2/SingleImage.vue.d.ts +0 -26
- package/dist/components/virtualTourV2/SocialShare.vue.d.ts +0 -10
- package/dist/components/virtualTourV2/TimeOfDay.vue.d.ts +0 -27
- package/dist/components/virtualTourV2/Tutorial.vue.d.ts +0 -23
- package/dist/components/virtualTourV2/ViewModeToggle.vue.d.ts +0 -16
- package/dist/components/virtualTourV2/VirtualTourV2.vue.d.ts +0 -322
- package/dist/components/virtualTourV2/WaypointCarousel.vue.d.ts +0 -31
- package/dist/components/virtualTourV2/index.d.ts +0 -1
- package/dist/components/virtualTourV2/minimapv2/MiniMapMap.vue.d.ts +0 -82
- package/dist/components/virtualTourV2/minimapv2/MiniMapV2.vue.d.ts +0 -78
- package/dist/components/virtualTourV2/minimapv2/MinimapCompass.vue.d.ts +0 -30
- package/dist/components/virtualTourV2/minimapv2/Moveable.vue.d.ts +0 -8
- package/dist/components/virtualTourV2/minimapv2/RotationMarkerV2.vue.d.ts +0 -12
- package/dist/components/virtualTourV2/minimapv2/SunsimulationSlider.vue.d.ts +0 -48
- package/dist/components/virtualTourV2/minimapv2/index.d.ts +0 -1
- package/dist/style.css +0 -1
- package/dist/vue3-player.js +0 -5414
- package/dist/vue3-player.umd.cjs +0 -1
- package/src/components/apartmentChooser/QiApartmentChooser.vue +0 -319
- package/src/components/apartmentChooser/QiApartmentChooserNavigation.vue +0 -88
- package/src/components/apartmentChooser/QiApartmentChooserRaster.vue +0 -408
- package/src/components/apartmentChooser/QiApartmentChooserRotator.vue +0 -202
- package/src/components/apartmentChooser/QiApartmentChooserSvg.vue +0 -257
- package/src/components/apartmentChooser/index.js +0 -5
- package/src/components/buildingPicker/QiBuildingChooser.vue +0 -61
- package/src/components/buildingPicker/QiBuildingChooserRaster.vue +0 -312
- package/src/components/buildingPicker/QiBuildingChooserRasterOverlay.vue +0 -96
- package/src/components/buildingPicker/QiBuildingChooserSceneImageStack.vue +0 -89
- package/src/components/buildingPicker/QiBuildingChooserSunSimControl.vue +0 -257
- package/src/components/buildingPicker/QiBuildingChooserSvg.vue +0 -414
- package/src/components/buildingPicker/index.js +0 -6
- package/src/components/index.ts +0 -4
- package/src/components/shared/QiFloatingCard.vue +0 -76
- package/src/components/shared/QiHoverProbe.vue +0 -22
- package/src/components/shared/QiNorthDirection.vue +0 -27
- package/src/components/shared/QiZoomBox.vue +0 -322
- package/src/components/shared/index.js +0 -4
- package/src/components/virtualTourV2/Compass.vue +0 -37
- package/src/components/virtualTourV2/Disclaimer.vue +0 -41
- package/src/components/virtualTourV2/FloorLevel.vue +0 -73
- package/src/components/virtualTourV2/FullScreenButton.vue +0 -23
- package/src/components/virtualTourV2/InteriorSelector.vue +0 -90
- package/src/components/virtualTourV2/ManualSlideShow.vue +0 -198
- package/src/components/virtualTourV2/ManualSlideShowPlayer.vue +0 -159
- package/src/components/virtualTourV2/Player.vue +0 -300
- package/src/components/virtualTourV2/ScrollHelper.vue +0 -74
- package/src/components/virtualTourV2/SettingsUI.vue +0 -355
- package/src/components/virtualTourV2/SingleImage.vue +0 -36
- package/src/components/virtualTourV2/SocialShare.vue +0 -163
- package/src/components/virtualTourV2/TimeOfDay.vue +0 -50
- package/src/components/virtualTourV2/Tutorial.vue +0 -690
- package/src/components/virtualTourV2/ViewModeToggle.vue +0 -24
- package/src/components/virtualTourV2/VirtualTourV2.vue +0 -875
- package/src/components/virtualTourV2/WaypointCarousel.vue +0 -162
- package/src/components/virtualTourV2/index.ts +0 -20
- package/src/components/virtualTourV2/minimapv2/MiniMapMap.vue +0 -262
- package/src/components/virtualTourV2/minimapv2/MiniMapV2.vue +0 -110
- package/src/components/virtualTourV2/minimapv2/MinimapCompass.vue +0 -39
- package/src/components/virtualTourV2/minimapv2/Moveable.vue +0 -208
- package/src/components/virtualTourV2/minimapv2/RotationMarkerV2.vue +0 -79
- package/src/components/virtualTourV2/minimapv2/SunsimulationSlider.vue +0 -203
- package/src/components/virtualTourV2/minimapv2/index.ts +0 -1
- /package/dist/{lib → vue-components/src/lib}/index.d.ts +0 -0
|
@@ -1,690 +0,0 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<transition name="fade-transition">
|
|
3
|
-
<div v-if="isVisible && !tutorialHiddenForEternity" class="tutorial">
|
|
4
|
-
<div v-if="!isMobile" class="desktop-content">
|
|
5
|
-
<div class="d-inline-flex">
|
|
6
|
-
<div class="box col">
|
|
7
|
-
<div class="tutorial-icon d-flex align-items-center justify-center">
|
|
8
|
-
<svg
|
|
9
|
-
width="100"
|
|
10
|
-
height="65"
|
|
11
|
-
viewBox="0 0 100 65"
|
|
12
|
-
fill="none"
|
|
13
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
-
>
|
|
15
|
-
<path
|
|
16
|
-
d="M72 30H86.9736M86.9736 30L81 36M86.9736 30L81 24"
|
|
17
|
-
stroke="#FF3E3E"
|
|
18
|
-
stroke-width="1.5"
|
|
19
|
-
stroke-linecap="round"
|
|
20
|
-
stroke-linejoin="round"
|
|
21
|
-
/>
|
|
22
|
-
<path
|
|
23
|
-
d="M27.9736 30H13M13 30L18.9736 36M13 30L18.9736 24"
|
|
24
|
-
stroke="#FF3E3E"
|
|
25
|
-
stroke-width="1.5"
|
|
26
|
-
stroke-linecap="round"
|
|
27
|
-
stroke-linejoin="round"
|
|
28
|
-
/>
|
|
29
|
-
<path
|
|
30
|
-
d="M36 30H64V40C64 47.732 57.732 54 50 54V54C42.268 54 36 47.732 36 40V30Z"
|
|
31
|
-
fill="white"
|
|
32
|
-
stroke="black"
|
|
33
|
-
stroke-width="1.5"
|
|
34
|
-
/>
|
|
35
|
-
<path
|
|
36
|
-
d="M36 25C36 17.268 42.268 11 50 11V11V30H36V25Z"
|
|
37
|
-
fill="#FF3E3E"
|
|
38
|
-
stroke="black"
|
|
39
|
-
stroke-width="1.5"
|
|
40
|
-
/>
|
|
41
|
-
<path
|
|
42
|
-
d="M64 25C64 17.268 57.732 11 50 11V11V30H64V25Z"
|
|
43
|
-
fill="white"
|
|
44
|
-
stroke="black"
|
|
45
|
-
stroke-width="1.5"
|
|
46
|
-
/>
|
|
47
|
-
<path
|
|
48
|
-
d="M53.25 23V30C53.25 31.7949 51.7949 33.25 50 33.25C48.2051 33.25 46.75 31.7949 46.75 30V23C46.75 21.2051 48.2051 19.75 50 19.75C51.7949 19.75 53.25 21.2051 53.25 23Z"
|
|
49
|
-
fill="white"
|
|
50
|
-
stroke="black"
|
|
51
|
-
stroke-width="1.5"
|
|
52
|
-
/>
|
|
53
|
-
</svg>
|
|
54
|
-
</div>
|
|
55
|
-
<div class="text mt-3">
|
|
56
|
-
{{ i18n.getLabel('click-and-drag-to-look-around') }}
|
|
57
|
-
</div>
|
|
58
|
-
</div>
|
|
59
|
-
<div class="box col">
|
|
60
|
-
<div class="tutorial-icon d-flex align-items-center justify-center">
|
|
61
|
-
<svg
|
|
62
|
-
width="100"
|
|
63
|
-
height="65"
|
|
64
|
-
viewBox="0 0 100 65"
|
|
65
|
-
fill="none"
|
|
66
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
67
|
-
>
|
|
68
|
-
<path
|
|
69
|
-
d="M79.9936 27.0175C79.9881 19.276 66.3321 13.0323 49.492 13.0719C32.652 13.1116 19.0049 19.4194 19.0105 27.1609C19.016 34.9025 32.6721 41.1461 49.5121 41.1065C66.3521 41.0669 79.9992 34.759 79.9936 27.0175Z"
|
|
70
|
-
fill="white"
|
|
71
|
-
stroke="#B3B3B3"
|
|
72
|
-
stroke-width="1.5"
|
|
73
|
-
/>
|
|
74
|
-
<path
|
|
75
|
-
d="M61.8032 45.179L56.543 50.3218V28.0361L72.543 43.4647H65.0909L67.9402 50.3218L64.6526 52.0361L61.8032 45.179Z"
|
|
76
|
-
fill="white"
|
|
77
|
-
stroke="black"
|
|
78
|
-
stroke-width="1.5"
|
|
79
|
-
stroke-linejoin="round"
|
|
80
|
-
/>
|
|
81
|
-
<path
|
|
82
|
-
d="M50.502 28.0361L46.502 28.0361"
|
|
83
|
-
stroke="#FF3E3E"
|
|
84
|
-
stroke-width="1.5"
|
|
85
|
-
stroke-linecap="round"
|
|
86
|
-
/>
|
|
87
|
-
<path
|
|
88
|
-
d="M50.502 28.0361L46.502 28.0361"
|
|
89
|
-
stroke="#FF3E3E"
|
|
90
|
-
stroke-width="1.5"
|
|
91
|
-
stroke-linecap="round"
|
|
92
|
-
/>
|
|
93
|
-
<path
|
|
94
|
-
d="M50.502 28.0361L46.502 28.0361"
|
|
95
|
-
stroke="#FF3E3E"
|
|
96
|
-
stroke-width="1.5"
|
|
97
|
-
stroke-linecap="round"
|
|
98
|
-
/>
|
|
99
|
-
<path
|
|
100
|
-
d="M66.502 28.0361L62.502 28.0361"
|
|
101
|
-
stroke="#FF3E3E"
|
|
102
|
-
stroke-width="1.5"
|
|
103
|
-
stroke-linecap="round"
|
|
104
|
-
/>
|
|
105
|
-
<path
|
|
106
|
-
d="M66.502 28.0361L62.502 28.0361"
|
|
107
|
-
stroke="#FF3E3E"
|
|
108
|
-
stroke-width="1.5"
|
|
109
|
-
stroke-linecap="round"
|
|
110
|
-
/>
|
|
111
|
-
<path
|
|
112
|
-
d="M66.502 28.0361L62.502 28.0361"
|
|
113
|
-
stroke="#FF3E3E"
|
|
114
|
-
stroke-width="1.5"
|
|
115
|
-
stroke-linecap="round"
|
|
116
|
-
/>
|
|
117
|
-
<path
|
|
118
|
-
d="M52.1582 24.0361L49.1582 21.0361"
|
|
119
|
-
stroke="#FF3E3E"
|
|
120
|
-
stroke-width="1.5"
|
|
121
|
-
stroke-linecap="round"
|
|
122
|
-
/>
|
|
123
|
-
<path
|
|
124
|
-
d="M52.1582 24.0361L49.1582 21.0361"
|
|
125
|
-
stroke="#FF3E3E"
|
|
126
|
-
stroke-width="1.5"
|
|
127
|
-
stroke-linecap="round"
|
|
128
|
-
/>
|
|
129
|
-
<path
|
|
130
|
-
d="M52.1582 24.0361L49.1582 21.0361"
|
|
131
|
-
stroke="#FF3E3E"
|
|
132
|
-
stroke-width="1.5"
|
|
133
|
-
stroke-linecap="round"
|
|
134
|
-
/>
|
|
135
|
-
<path
|
|
136
|
-
d="M60.502 24.0361L63.502 21.0361"
|
|
137
|
-
stroke="#FF3E3E"
|
|
138
|
-
stroke-width="1.5"
|
|
139
|
-
stroke-linecap="round"
|
|
140
|
-
/>
|
|
141
|
-
<path
|
|
142
|
-
d="M60.502 24.0361L63.502 21.0361"
|
|
143
|
-
stroke="#FF3E3E"
|
|
144
|
-
stroke-width="1.5"
|
|
145
|
-
stroke-linecap="round"
|
|
146
|
-
/>
|
|
147
|
-
<path
|
|
148
|
-
d="M60.502 24.0361L63.502 21.0361"
|
|
149
|
-
stroke="#FF3E3E"
|
|
150
|
-
stroke-width="1.5"
|
|
151
|
-
stroke-linecap="round"
|
|
152
|
-
/>
|
|
153
|
-
<path
|
|
154
|
-
d="M56.502 22.0361L56.502 18.0361"
|
|
155
|
-
stroke="#FF3E3E"
|
|
156
|
-
stroke-width="1.5"
|
|
157
|
-
stroke-linecap="round"
|
|
158
|
-
/>
|
|
159
|
-
<path
|
|
160
|
-
d="M56.502 22.0361L56.502 18.0361"
|
|
161
|
-
stroke="#FF3E3E"
|
|
162
|
-
stroke-width="1.5"
|
|
163
|
-
stroke-linecap="round"
|
|
164
|
-
/>
|
|
165
|
-
<path
|
|
166
|
-
d="M56.502 22.0361L56.502 18.0361"
|
|
167
|
-
stroke="#FF3E3E"
|
|
168
|
-
stroke-width="1.5"
|
|
169
|
-
stroke-linecap="round"
|
|
170
|
-
/>
|
|
171
|
-
<path
|
|
172
|
-
d="M52.1582 32.0361L49.1582 35.0361"
|
|
173
|
-
stroke="#FF3E3E"
|
|
174
|
-
stroke-width="1.5"
|
|
175
|
-
stroke-linecap="round"
|
|
176
|
-
/>
|
|
177
|
-
<path
|
|
178
|
-
d="M52.1582 32.0361L49.1582 35.0361"
|
|
179
|
-
stroke="#FF3E3E"
|
|
180
|
-
stroke-width="1.5"
|
|
181
|
-
stroke-linecap="round"
|
|
182
|
-
/>
|
|
183
|
-
<path
|
|
184
|
-
d="M52.1582 32.0361L49.1582 35.0361"
|
|
185
|
-
stroke="#FF3E3E"
|
|
186
|
-
stroke-width="1.5"
|
|
187
|
-
stroke-linecap="round"
|
|
188
|
-
/>
|
|
189
|
-
</svg>
|
|
190
|
-
</div>
|
|
191
|
-
<div class="text mt-3">
|
|
192
|
-
{{ i18n.getLabel('click-on-the-cricles-to-move-around') }}
|
|
193
|
-
</div>
|
|
194
|
-
</div>
|
|
195
|
-
<div class="box col">
|
|
196
|
-
<div class="tutorial-icon d-flex align-items-center justify-center">
|
|
197
|
-
<svg
|
|
198
|
-
width="100"
|
|
199
|
-
height="65"
|
|
200
|
-
viewBox="0 0 100 65"
|
|
201
|
-
fill="none"
|
|
202
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
203
|
-
>
|
|
204
|
-
<path
|
|
205
|
-
d="M36 33H64V43C64 50.732 57.732 57 50 57V57C42.268 57 36 50.732 36 43V33Z"
|
|
206
|
-
fill="white"
|
|
207
|
-
stroke="black"
|
|
208
|
-
stroke-width="1.5"
|
|
209
|
-
/>
|
|
210
|
-
<path
|
|
211
|
-
d="M36 28C36 20.268 42.268 14 50 14V14V33H36V28Z"
|
|
212
|
-
fill="white"
|
|
213
|
-
stroke="black"
|
|
214
|
-
stroke-width="1.5"
|
|
215
|
-
/>
|
|
216
|
-
<path
|
|
217
|
-
d="M64 28C64 20.268 57.732 14 50 14V14V33H64V28Z"
|
|
218
|
-
fill="white"
|
|
219
|
-
stroke="black"
|
|
220
|
-
stroke-width="1.5"
|
|
221
|
-
/>
|
|
222
|
-
<path
|
|
223
|
-
d="M53.25 26V33C53.25 34.7949 51.7949 36.25 50 36.25C48.2051 36.25 46.75 34.7949 46.75 33V26C46.75 24.2051 48.2051 22.75 50 22.75C51.7949 22.75 53.25 24.2051 53.25 26Z"
|
|
224
|
-
fill="#FF3E3E"
|
|
225
|
-
stroke="black"
|
|
226
|
-
stroke-width="1.5"
|
|
227
|
-
/>
|
|
228
|
-
<path
|
|
229
|
-
fill-rule="evenodd"
|
|
230
|
-
clip-rule="evenodd"
|
|
231
|
-
d="M74.5352 20.7593L80.3458 26.5699C80.9316 27.1557 80.9316 28.1055 80.3458 28.6913C79.76 29.277 78.8103 29.277 78.2245 28.6913L72.4138 22.8806L74.5352 20.7593Z"
|
|
232
|
-
fill="black"
|
|
233
|
-
stroke="black"
|
|
234
|
-
stroke-width="1.5"
|
|
235
|
-
stroke-linecap="round"
|
|
236
|
-
/>
|
|
237
|
-
<circle
|
|
238
|
-
cx="66.5"
|
|
239
|
-
cy="15.5"
|
|
240
|
-
r="9.75"
|
|
241
|
-
fill="white"
|
|
242
|
-
stroke="black"
|
|
243
|
-
stroke-width="1.5"
|
|
244
|
-
/>
|
|
245
|
-
<rect
|
|
246
|
-
x="66"
|
|
247
|
-
y="11"
|
|
248
|
-
width="1"
|
|
249
|
-
height="9"
|
|
250
|
-
fill="black"
|
|
251
|
-
stroke="black"
|
|
252
|
-
stroke-width="0.75"
|
|
253
|
-
stroke-linejoin="round"
|
|
254
|
-
/>
|
|
255
|
-
<rect
|
|
256
|
-
x="71"
|
|
257
|
-
y="15"
|
|
258
|
-
width="1"
|
|
259
|
-
height="9"
|
|
260
|
-
transform="rotate(90 71 15)"
|
|
261
|
-
fill="black"
|
|
262
|
-
stroke="black"
|
|
263
|
-
stroke-width="0.75"
|
|
264
|
-
stroke-linejoin="round"
|
|
265
|
-
/>
|
|
266
|
-
</svg>
|
|
267
|
-
</div>
|
|
268
|
-
<div class="text mt-3">
|
|
269
|
-
{{ i18n.getLabel('use-the-mouse-wheel-to-zoom') }}
|
|
270
|
-
</div>
|
|
271
|
-
</div>
|
|
272
|
-
</div>
|
|
273
|
-
<div class="d-inline-flex space-around">
|
|
274
|
-
<div class="box col">
|
|
275
|
-
<div class="tutorial-icon d-flex align-items-center justify-center">
|
|
276
|
-
<svg
|
|
277
|
-
width="100"
|
|
278
|
-
height="65"
|
|
279
|
-
viewBox="0 0 100 65"
|
|
280
|
-
fill="none"
|
|
281
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
282
|
-
>
|
|
283
|
-
<rect
|
|
284
|
-
x="65.0967"
|
|
285
|
-
y="34.3228"
|
|
286
|
-
width="20.9032"
|
|
287
|
-
height="20.9032"
|
|
288
|
-
rx="2"
|
|
289
|
-
fill="white"
|
|
290
|
-
stroke="black"
|
|
291
|
-
stroke-width="1.5"
|
|
292
|
-
/>
|
|
293
|
-
<rect
|
|
294
|
-
x="39.5488"
|
|
295
|
-
y="29.6777"
|
|
296
|
-
width="20.9032"
|
|
297
|
-
height="20.9032"
|
|
298
|
-
rx="2"
|
|
299
|
-
transform="rotate(-90 39.5488 29.6777)"
|
|
300
|
-
fill="white"
|
|
301
|
-
stroke="black"
|
|
302
|
-
stroke-width="1.5"
|
|
303
|
-
/>
|
|
304
|
-
<rect
|
|
305
|
-
x="60.4512"
|
|
306
|
-
y="34.3228"
|
|
307
|
-
width="20.9032"
|
|
308
|
-
height="20.9032"
|
|
309
|
-
rx="2"
|
|
310
|
-
transform="rotate(90 60.4512 34.3228)"
|
|
311
|
-
fill="white"
|
|
312
|
-
stroke="black"
|
|
313
|
-
stroke-width="1.5"
|
|
314
|
-
/>
|
|
315
|
-
<rect
|
|
316
|
-
x="34.9033"
|
|
317
|
-
y="55.2261"
|
|
318
|
-
width="20.9032"
|
|
319
|
-
height="20.9032"
|
|
320
|
-
rx="2"
|
|
321
|
-
transform="rotate(-180 34.9033 55.2261)"
|
|
322
|
-
fill="white"
|
|
323
|
-
stroke="black"
|
|
324
|
-
stroke-width="1.5"
|
|
325
|
-
/>
|
|
326
|
-
<path
|
|
327
|
-
d="M77.7025 44.3796C77.9599 44.5798 77.9599 44.9688 77.7025 45.169L74.6621 47.5338C74.3337 47.7892 73.8551 47.5552 73.8551 47.1391L73.8551 42.4095C73.8551 41.9935 74.3337 41.7594 74.6621 42.0149L77.7025 44.3796Z"
|
|
328
|
-
fill="#FF3E3E"
|
|
329
|
-
/>
|
|
330
|
-
<path
|
|
331
|
-
d="M49.6047 17.0724C49.8049 16.815 50.1939 16.815 50.3941 17.0724L52.7589 20.1128C53.0143 20.4412 52.7803 20.9198 52.3642 20.9198L47.6346 20.9198C47.2185 20.9198 46.9845 20.4412 47.2399 20.1128L49.6047 17.0724Z"
|
|
332
|
-
fill="#FF3E3E"
|
|
333
|
-
/>
|
|
334
|
-
<path
|
|
335
|
-
d="M50.3953 46.9281C50.1951 47.1855 49.8061 47.1855 49.6059 46.9281L47.2411 43.8877C46.9857 43.5592 47.2197 43.0807 47.6358 43.0807L52.3654 43.0807C52.7815 43.0807 53.0155 43.5592 52.7601 43.8877L50.3953 46.9281Z"
|
|
336
|
-
fill="#FF3E3E"
|
|
337
|
-
/>
|
|
338
|
-
<path
|
|
339
|
-
d="M22.2975 45.1692C22.0401 44.969 22.0401 44.58 22.2975 44.3798L25.3379 42.0151C25.6663 41.7596 26.1449 41.9937 26.1449 42.4097L26.1449 47.1393C26.1449 47.5554 25.6663 47.7894 25.3379 47.534L22.2975 45.1692Z"
|
|
340
|
-
fill="#FF3E3E"
|
|
341
|
-
/>
|
|
342
|
-
</svg>
|
|
343
|
-
</div>
|
|
344
|
-
<div class="text mt-3">
|
|
345
|
-
{{
|
|
346
|
-
i18n.getLabel('you-can-also-use-the-arrow-keys-to-move-around')
|
|
347
|
-
}}
|
|
348
|
-
</div>
|
|
349
|
-
</div>
|
|
350
|
-
</div>
|
|
351
|
-
</div>
|
|
352
|
-
|
|
353
|
-
<div v-if="isMobile" class="d-flex flex-column tablet-mobile-content">
|
|
354
|
-
<div class="box horizontal mt-3">
|
|
355
|
-
<div class="tutorial-icon d-flex align-items-center justify-center">
|
|
356
|
-
<svg
|
|
357
|
-
width="101"
|
|
358
|
-
height="65"
|
|
359
|
-
viewBox="0 0 101 65"
|
|
360
|
-
fill="none"
|
|
361
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
362
|
-
>
|
|
363
|
-
<path
|
|
364
|
-
d="M68 28H87.9736M87.9736 28L82 34M87.9736 28L82 22"
|
|
365
|
-
stroke="#FF3E3E"
|
|
366
|
-
stroke-width="1.5"
|
|
367
|
-
stroke-linecap="round"
|
|
368
|
-
stroke-linejoin="round"
|
|
369
|
-
/>
|
|
370
|
-
<path
|
|
371
|
-
d="M33.9727 28H13.999M13.999 28L19.9727 34M13.999 28L19.9727 22"
|
|
372
|
-
stroke="#FF3E3E"
|
|
373
|
-
stroke-width="1.5"
|
|
374
|
-
stroke-linecap="round"
|
|
375
|
-
stroke-linejoin="round"
|
|
376
|
-
/>
|
|
377
|
-
<path
|
|
378
|
-
d="M57.3126 51.1276L62.5533 49.7234C65.3195 48.9822 67.2473 46.4813 67.2601 43.6176C67.2626 43.0532 67.1898 42.4909 67.0438 41.9457L64.9992 34.3153C64.7491 33.3818 63.7895 32.8278 62.8559 33.0779C61.9223 33.328 61.3683 34.2876 61.6185 35.2212L61.0361 33.0479C60.7502 31.9809 59.6536 31.3478 58.5866 31.6337C57.5197 31.9195 56.8865 33.0162 57.1724 34.0831L56.7195 32.3928C56.3979 31.1925 55.1641 30.4802 53.9638 30.8018C52.7635 31.1234 52.0512 32.3572 52.3728 33.5575L50.6258 27.0375C50.3399 25.9705 49.2432 25.3374 48.1763 25.6233C47.1094 25.9091 46.4762 27.0058 46.7621 28.0727L50.3855 41.5957C49.2796 40.7276 47.5926 39.524 46.3279 38.6369C45.3814 37.9729 44.0801 38.2068 43.4137 39.1516C42.8107 40.0066 42.9238 41.1741 43.6798 41.8975L51.8691 49.7332C53.3154 51.1171 55.3791 51.6457 57.3126 51.1276Z"
|
|
379
|
-
fill="white"
|
|
380
|
-
/>
|
|
381
|
-
<path
|
|
382
|
-
d="M53.7316 38.6286L52.6963 34.7649M52.6963 34.7649L50.6258 27.0375C50.3399 25.9705 49.2432 25.3374 48.1763 25.6233V25.6233C47.1094 25.9091 46.4762 27.0058 46.7621 28.0727L50.3855 41.5957C49.2796 40.7276 47.5926 39.524 46.3279 38.6369C45.3814 37.9729 44.0801 38.2068 43.4137 39.1516V39.1516C42.8107 40.0066 42.9238 41.1741 43.6798 41.8975L51.8691 49.7332C53.3154 51.1171 55.3791 51.6457 57.3126 51.1276L62.5533 49.7234C65.3195 48.9822 67.2473 46.4813 67.2601 43.6176V43.6176C67.2626 43.0532 67.1898 42.4909 67.0438 41.9457L64.9992 34.3153C64.7491 33.3818 63.7895 32.8278 62.8559 33.0779V33.0779V33.0779C61.9223 33.328 61.3683 34.2876 61.6185 35.2212L61.942 36.4286M52.6963 34.7649L52.3728 33.5575C52.0512 32.3572 52.7635 31.1234 53.9638 30.8018V30.8018C55.1641 30.4802 56.3979 31.1925 56.7195 32.3928L57.3018 34.5661M58.2077 37.9469L57.3018 34.5661M57.3018 34.5661L57.1724 34.0831C56.8865 33.0162 57.5197 31.9195 58.5866 31.6337V31.6337C59.6536 31.3478 60.7502 31.9809 61.0361 33.0479L61.942 36.4286M62.3302 37.8775L61.942 36.4286"
|
|
383
|
-
stroke="black"
|
|
384
|
-
stroke-width="1.5"
|
|
385
|
-
stroke-linecap="round"
|
|
386
|
-
stroke-linejoin="round"
|
|
387
|
-
/>
|
|
388
|
-
</svg>
|
|
389
|
-
</div>
|
|
390
|
-
<div class="text ml-2">
|
|
391
|
-
{{ i18n.getLabel('tap-and-drag-to-look-around') }}
|
|
392
|
-
</div>
|
|
393
|
-
</div>
|
|
394
|
-
<div class="box horizontal mt-3">
|
|
395
|
-
<div class="tutorial-icon d-flex align-items-center justify-center">
|
|
396
|
-
<svg
|
|
397
|
-
width="99"
|
|
398
|
-
height="65"
|
|
399
|
-
viewBox="0 0 99 65"
|
|
400
|
-
fill="none"
|
|
401
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
402
|
-
>
|
|
403
|
-
<path
|
|
404
|
-
d="M79.9927 29.9814C79.9871 22.2398 66.3311 15.9962 49.491 16.0358C32.651 16.0754 19.0039 22.3833 19.0095 30.1248C19.015 37.8663 32.6711 44.11 49.5111 44.0704C66.3512 44.0308 79.9982 37.7229 79.9927 29.9814Z"
|
|
405
|
-
fill="white"
|
|
406
|
-
stroke="#B3B3B3"
|
|
407
|
-
stroke-width="1.5"
|
|
408
|
-
/>
|
|
409
|
-
<path
|
|
410
|
-
d="M50.5 31L46.5 31"
|
|
411
|
-
stroke="#FF3E3E"
|
|
412
|
-
stroke-width="1.5"
|
|
413
|
-
stroke-linecap="round"
|
|
414
|
-
/>
|
|
415
|
-
<path
|
|
416
|
-
d="M50.5 31L46.5 31"
|
|
417
|
-
stroke="#FF3E3E"
|
|
418
|
-
stroke-width="1.5"
|
|
419
|
-
stroke-linecap="round"
|
|
420
|
-
/>
|
|
421
|
-
<path
|
|
422
|
-
d="M50.5 31L46.5 31"
|
|
423
|
-
stroke="#FF3E3E"
|
|
424
|
-
stroke-width="1.5"
|
|
425
|
-
stroke-linecap="round"
|
|
426
|
-
/>
|
|
427
|
-
<path
|
|
428
|
-
d="M66.5 31L62.5 31"
|
|
429
|
-
stroke="#FF3E3E"
|
|
430
|
-
stroke-width="1.5"
|
|
431
|
-
stroke-linecap="round"
|
|
432
|
-
/>
|
|
433
|
-
<path
|
|
434
|
-
d="M66.5 31L62.5 31"
|
|
435
|
-
stroke="#FF3E3E"
|
|
436
|
-
stroke-width="1.5"
|
|
437
|
-
stroke-linecap="round"
|
|
438
|
-
/>
|
|
439
|
-
<path
|
|
440
|
-
d="M66.5 31L62.5 31"
|
|
441
|
-
stroke="#FF3E3E"
|
|
442
|
-
stroke-width="1.5"
|
|
443
|
-
stroke-linecap="round"
|
|
444
|
-
/>
|
|
445
|
-
<path
|
|
446
|
-
d="M52.1562 27L49.1562 24"
|
|
447
|
-
stroke="#FF3E3E"
|
|
448
|
-
stroke-width="1.5"
|
|
449
|
-
stroke-linecap="round"
|
|
450
|
-
/>
|
|
451
|
-
<path
|
|
452
|
-
d="M52.1562 27L49.1562 24"
|
|
453
|
-
stroke="#FF3E3E"
|
|
454
|
-
stroke-width="1.5"
|
|
455
|
-
stroke-linecap="round"
|
|
456
|
-
/>
|
|
457
|
-
<path
|
|
458
|
-
d="M52.1562 27L49.1562 24"
|
|
459
|
-
stroke="#FF3E3E"
|
|
460
|
-
stroke-width="1.5"
|
|
461
|
-
stroke-linecap="round"
|
|
462
|
-
/>
|
|
463
|
-
<path
|
|
464
|
-
d="M60.5 27L63.5 24"
|
|
465
|
-
stroke="#FF3E3E"
|
|
466
|
-
stroke-width="1.5"
|
|
467
|
-
stroke-linecap="round"
|
|
468
|
-
/>
|
|
469
|
-
<path
|
|
470
|
-
d="M60.5 27L63.5 24"
|
|
471
|
-
stroke="#FF3E3E"
|
|
472
|
-
stroke-width="1.5"
|
|
473
|
-
stroke-linecap="round"
|
|
474
|
-
/>
|
|
475
|
-
<path
|
|
476
|
-
d="M60.5 27L63.5 24"
|
|
477
|
-
stroke="#FF3E3E"
|
|
478
|
-
stroke-width="1.5"
|
|
479
|
-
stroke-linecap="round"
|
|
480
|
-
/>
|
|
481
|
-
<path
|
|
482
|
-
d="M56.5 25L56.5 21"
|
|
483
|
-
stroke="#FF3E3E"
|
|
484
|
-
stroke-width="1.5"
|
|
485
|
-
stroke-linecap="round"
|
|
486
|
-
/>
|
|
487
|
-
<path
|
|
488
|
-
d="M56.5 25L56.5 21"
|
|
489
|
-
stroke="#FF3E3E"
|
|
490
|
-
stroke-width="1.5"
|
|
491
|
-
stroke-linecap="round"
|
|
492
|
-
/>
|
|
493
|
-
<path
|
|
494
|
-
d="M56.5 25L56.5 21"
|
|
495
|
-
stroke="#FF3E3E"
|
|
496
|
-
stroke-width="1.5"
|
|
497
|
-
stroke-linecap="round"
|
|
498
|
-
/>
|
|
499
|
-
<path
|
|
500
|
-
d="M52.1562 35L49.1562 38"
|
|
501
|
-
stroke="#FF3E3E"
|
|
502
|
-
stroke-width="1.5"
|
|
503
|
-
stroke-linecap="round"
|
|
504
|
-
/>
|
|
505
|
-
<path
|
|
506
|
-
d="M52.1562 35L49.1562 38"
|
|
507
|
-
stroke="#FF3E3E"
|
|
508
|
-
stroke-width="1.5"
|
|
509
|
-
stroke-linecap="round"
|
|
510
|
-
/>
|
|
511
|
-
<path
|
|
512
|
-
d="M52.1562 35L49.1562 38"
|
|
513
|
-
stroke="#FF3E3E"
|
|
514
|
-
stroke-width="1.5"
|
|
515
|
-
stroke-linecap="round"
|
|
516
|
-
/>
|
|
517
|
-
<path
|
|
518
|
-
d="M64.8126 54.1276L70.0533 52.7234C72.8195 51.9822 74.7473 49.4813 74.7601 46.6176C74.7626 46.0532 74.6898 45.4909 74.5438 44.9457L72.4992 37.3153C72.2491 36.3818 71.2895 35.8278 70.3559 36.0779C69.4223 36.328 68.8683 37.2876 69.1185 38.2212L68.5361 36.0479C68.2502 34.9809 67.1536 34.3478 66.0866 34.6337C65.0197 34.9195 64.3865 36.0162 64.6724 37.0831L64.2195 35.3928C63.8979 34.1925 62.6641 33.4802 61.4638 33.8018C60.2635 34.1234 59.5512 35.3572 59.8728 36.5575L58.1258 30.0375C57.8399 28.9705 56.7432 28.3374 55.6763 28.6233C54.6094 28.9091 53.9762 30.0058 54.2621 31.0727L57.8855 44.5957C56.7796 43.7276 55.0926 42.524 53.8279 41.6369C52.8814 40.9729 51.5801 41.2068 50.9137 42.1516C50.3107 43.0066 50.4238 44.1741 51.1798 44.8975L59.3691 52.7332C60.8154 54.1171 62.8791 54.6457 64.8126 54.1276Z"
|
|
519
|
-
fill="white"
|
|
520
|
-
/>
|
|
521
|
-
<path
|
|
522
|
-
d="M61.2316 41.6286L60.1963 37.7649M60.1963 37.7649L58.1258 30.0375C57.8399 28.9705 56.7432 28.3374 55.6763 28.6233V28.6233C54.6094 28.9091 53.9762 30.0058 54.2621 31.0727L57.8855 44.5957C56.7796 43.7276 55.0926 42.524 53.8279 41.6369C52.8814 40.9729 51.5801 41.2068 50.9137 42.1516V42.1516C50.3107 43.0066 50.4238 44.1741 51.1798 44.8975L59.3691 52.7332C60.8154 54.1171 62.8791 54.6457 64.8126 54.1276L70.0533 52.7234C72.8195 51.9822 74.7473 49.4813 74.7601 46.6176V46.6176C74.7626 46.0532 74.6898 45.4909 74.5438 44.9457L72.4992 37.3153C72.2491 36.3818 71.2895 35.8278 70.3559 36.0779V36.0779V36.0779C69.4223 36.328 68.8683 37.2876 69.1185 38.2212L69.442 39.4286M60.1963 37.7649L59.8728 36.5575C59.5512 35.3572 60.2635 34.1234 61.4638 33.8018V33.8018C62.6641 33.4802 63.8979 34.1925 64.2195 35.3928L64.8018 37.5661M65.7077 40.9469L64.8018 37.5661M64.8018 37.5661L64.6724 37.0831C64.3865 36.0162 65.0197 34.9195 66.0866 34.6337V34.6337C67.1536 34.3478 68.2502 34.9809 68.5361 36.0479L69.442 39.4286M69.8302 40.8775L69.442 39.4286"
|
|
523
|
-
stroke="black"
|
|
524
|
-
stroke-width="1.5"
|
|
525
|
-
stroke-linecap="round"
|
|
526
|
-
stroke-linejoin="round"
|
|
527
|
-
/>
|
|
528
|
-
</svg>
|
|
529
|
-
</div>
|
|
530
|
-
<div class="text ml-2">
|
|
531
|
-
{{ i18n.getLabel('tap-on-the-circles-to-move-around') }}
|
|
532
|
-
</div>
|
|
533
|
-
</div>
|
|
534
|
-
<div class="box horizontal mt-3">
|
|
535
|
-
<div class="tutorial-icon d-flex align-items-center justify-center">
|
|
536
|
-
<svg
|
|
537
|
-
width="99"
|
|
538
|
-
height="65"
|
|
539
|
-
viewBox="0 0 99 65"
|
|
540
|
-
fill="none"
|
|
541
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
542
|
-
>
|
|
543
|
-
<path
|
|
544
|
-
d="M31 24.9736L31 10M31 10L25 15.9736M31 10L37 15.9736"
|
|
545
|
-
stroke="#FF3E3E"
|
|
546
|
-
stroke-width="1.5"
|
|
547
|
-
stroke-linecap="round"
|
|
548
|
-
stroke-linejoin="round"
|
|
549
|
-
/>
|
|
550
|
-
<path
|
|
551
|
-
d="M31 40L31 54.9736M31 54.9736L25 49M31 54.9736L37 49"
|
|
552
|
-
stroke="#FF3E3E"
|
|
553
|
-
stroke-width="1.5"
|
|
554
|
-
stroke-linecap="round"
|
|
555
|
-
stroke-linejoin="round"
|
|
556
|
-
/>
|
|
557
|
-
<path
|
|
558
|
-
d="M58.6512 44.3852L61.8162 42.5579C64.2963 41.126 65.5112 38.2114 64.7823 35.442C64.6387 34.8961 64.4229 34.3719 64.1407 33.883L60.1909 27.0418C59.7076 26.2048 58.6374 25.918 57.8003 26.4013C56.9633 26.8845 56.6765 27.9548 57.1598 28.7918L56.0348 26.8433C55.4825 25.8867 54.2593 25.5589 53.3027 26.1112C52.3462 26.6635 52.0184 27.8867 52.5707 28.8433L51.6957 27.3277C51.0744 26.2516 49.6983 25.8828 48.6221 26.5042C47.546 27.1255 47.1773 28.5016 47.7986 29.5777L44.4236 23.7321C43.8713 22.7755 42.6481 22.4477 41.6915 23C40.7349 23.5523 40.4072 24.7755 40.9595 25.7321L48.4595 38.7224L41.0923 40.5062C40.3398 40.6884 39.7721 41.3073 39.6555 42.0728C39.4961 43.1196 40.2199 44.096 41.268 44.2476L49.7609 45.4766L51.251 45.7252C53.7985 46.1503 56.4146 45.6766 58.6512 44.3852Z"
|
|
559
|
-
fill="white"
|
|
560
|
-
/>
|
|
561
|
-
<path
|
|
562
|
-
d="M50.4236 34.1244L48.4236 30.6603M48.4236 30.6603L44.4236 23.7321C43.8713 22.7755 42.6481 22.4477 41.6915 23V23C40.7349 23.5523 40.4072 24.7755 40.9595 25.7321L48.4595 38.7224L41.0923 40.5062C40.3398 40.6884 39.7721 41.3073 39.6555 42.0728V42.0728C39.4961 43.1196 40.2199 44.096 41.268 44.2476L49.7609 45.4766L51.251 45.7252C53.7985 46.1503 56.4146 45.6766 58.6512 44.3852L61.8162 42.5579C64.2963 41.126 65.5112 38.2114 64.7823 35.442V35.442C64.6387 34.8961 64.4229 34.3719 64.1407 33.883L60.1909 27.0418C59.7076 26.2048 58.6374 25.918 57.8003 26.4013V26.4013V26.4013C56.9633 26.8845 56.6765 27.9548 57.1598 28.7918L57.7848 29.8744M48.4236 30.6603L47.7986 29.5777C47.1773 28.5016 47.546 27.1255 48.6221 26.5042V26.5042C49.6983 25.8828 51.0744 26.2516 51.6957 27.3277L52.8207 29.2763M54.5707 32.3074L52.8207 29.2763M52.8207 29.2763L52.5707 28.8433C52.0184 27.8867 52.3462 26.6635 53.3027 26.1112V26.1112C54.2593 25.5589 55.4825 25.8867 56.0348 26.8433L57.7848 29.8744M58.5348 31.1734L57.7848 29.8744"
|
|
563
|
-
stroke="black"
|
|
564
|
-
stroke-width="1.5"
|
|
565
|
-
stroke-linecap="round"
|
|
566
|
-
stroke-linejoin="round"
|
|
567
|
-
/>
|
|
568
|
-
</svg>
|
|
569
|
-
</div>
|
|
570
|
-
<div class="text ml-2">
|
|
571
|
-
{{ i18n.getLabel('use-two-fingers-to-zoom') }}
|
|
572
|
-
</div>
|
|
573
|
-
</div>
|
|
574
|
-
</div>
|
|
575
|
-
|
|
576
|
-
<div class="d-flex justify-space-between mt-3 mx-3 mb-0 tutorial-buttons">
|
|
577
|
-
<v-checkbox
|
|
578
|
-
v-model="dontShow"
|
|
579
|
-
:label="i18n.getLabel('dont-show-again')"
|
|
580
|
-
></v-checkbox>
|
|
581
|
-
<v-btn small outlined class="mt-5" @click="clickedOk()">Ok</v-btn>
|
|
582
|
-
</div>
|
|
583
|
-
</div>
|
|
584
|
-
</transition>
|
|
585
|
-
</template>
|
|
586
|
-
<script>
|
|
587
|
-
export default {
|
|
588
|
-
name: 'Tutorial',
|
|
589
|
-
inject: ['i18n'],
|
|
590
|
-
emits: ['closeTutorial'],
|
|
591
|
-
props: {
|
|
592
|
-
project: {
|
|
593
|
-
type: String,
|
|
594
|
-
required: true,
|
|
595
|
-
},
|
|
596
|
-
},
|
|
597
|
-
data() {
|
|
598
|
-
return {
|
|
599
|
-
isVisible: true,
|
|
600
|
-
dontShow: false,
|
|
601
|
-
}
|
|
602
|
-
},
|
|
603
|
-
computed: {
|
|
604
|
-
isMobile() {
|
|
605
|
-
const toMatch = [
|
|
606
|
-
/Android/i,
|
|
607
|
-
/webOS/i,
|
|
608
|
-
/iPhone/i,
|
|
609
|
-
/iPad/i,
|
|
610
|
-
/iPod/i,
|
|
611
|
-
/BlackBerry/i,
|
|
612
|
-
/Windows Phone/i,
|
|
613
|
-
]
|
|
614
|
-
|
|
615
|
-
return toMatch.some((toMatchItem) => {
|
|
616
|
-
return navigator.userAgent.match(toMatchItem)
|
|
617
|
-
})
|
|
618
|
-
},
|
|
619
|
-
tutorialHiddenForEternity() {
|
|
620
|
-
const hiddenForEternity = localStorage.getItem(
|
|
621
|
-
`${this.project}-dont-show-tutorial`
|
|
622
|
-
)
|
|
623
|
-
|
|
624
|
-
if (hiddenForEternity) this.$emit('closeTutorial')
|
|
625
|
-
return hiddenForEternity
|
|
626
|
-
},
|
|
627
|
-
},
|
|
628
|
-
methods: {
|
|
629
|
-
clickedOk() {
|
|
630
|
-
if (this.dontShow) {
|
|
631
|
-
this.hideForEternity()
|
|
632
|
-
}
|
|
633
|
-
this.isVisible = false
|
|
634
|
-
this.$emit('closeTutorial')
|
|
635
|
-
},
|
|
636
|
-
hideForEternity() {
|
|
637
|
-
localStorage.setItem(`${this.project}-dont-show-tutorial`, true)
|
|
638
|
-
},
|
|
639
|
-
},
|
|
640
|
-
}
|
|
641
|
-
</script>
|
|
642
|
-
<style scoped>
|
|
643
|
-
.tutorial {
|
|
644
|
-
color: #000;
|
|
645
|
-
padding: 10px;
|
|
646
|
-
text-align: center;
|
|
647
|
-
background-color: #fff;
|
|
648
|
-
border-radius: 5px;
|
|
649
|
-
line-height: 20px;
|
|
650
|
-
}
|
|
651
|
-
|
|
652
|
-
.tutorial-icon {
|
|
653
|
-
border: 1.5px solid #e0e0e0;
|
|
654
|
-
border-radius: 5px;
|
|
655
|
-
width: 140px;
|
|
656
|
-
height: 75px;
|
|
657
|
-
}
|
|
658
|
-
|
|
659
|
-
.text {
|
|
660
|
-
font-size: 0.8em;
|
|
661
|
-
line-height: 1;
|
|
662
|
-
}
|
|
663
|
-
|
|
664
|
-
.box.col {
|
|
665
|
-
max-width: 180px !important;
|
|
666
|
-
}
|
|
667
|
-
|
|
668
|
-
.tablet-mobile-content {
|
|
669
|
-
min-width: 240px;
|
|
670
|
-
}
|
|
671
|
-
|
|
672
|
-
.box.horizontal {
|
|
673
|
-
display: flex;
|
|
674
|
-
align-items: center;
|
|
675
|
-
}
|
|
676
|
-
|
|
677
|
-
.tablet-mobile-content .tutorial-icon {
|
|
678
|
-
width: 100px;
|
|
679
|
-
height: 65px;
|
|
680
|
-
}
|
|
681
|
-
|
|
682
|
-
.tablet-mobile-content .text {
|
|
683
|
-
text-align: left;
|
|
684
|
-
}
|
|
685
|
-
</style>
|
|
686
|
-
<style>
|
|
687
|
-
.tutorial-buttons .v-messages {
|
|
688
|
-
display: none !important;
|
|
689
|
-
}
|
|
690
|
-
</style>
|