@panoramax/web-viewer 5.0.0-develop-d7206514 → 5.0.0-develop-d26305dd

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.
Files changed (152) hide show
  1. package/build/bundle.cjs +3399 -0
  2. package/build/bundle.cjs.map +1 -0
  3. package/build/bundle_photoviewer.cjs +2510 -0
  4. package/build/bundle_photoviewer.cjs.map +1 -0
  5. package/build/cjs/index.js +1 -1
  6. package/build/cjs/index_photoviewer.js +1 -1
  7. package/build/components/core/Basic.css +56 -0
  8. package/build/components/core/Basic.js +378 -0
  9. package/build/components/core/CoverageMap.css +10 -0
  10. package/build/components/core/CoverageMap.js +169 -0
  11. package/build/components/core/Editor.css +33 -0
  12. package/build/components/core/Editor.js +398 -0
  13. package/build/components/core/PhotoViewer.css +70 -0
  14. package/build/components/core/PhotoViewer.js +650 -0
  15. package/build/components/core/Viewer.css +130 -0
  16. package/build/components/core/Viewer.js +711 -0
  17. package/build/components/core/index.js +10 -0
  18. package/build/components/index.js +11 -0
  19. package/build/components/index_photoviewer.js +6 -0
  20. package/build/components/layout/BottomDrawer.js +258 -0
  21. package/build/components/layout/CorneredGrid.js +143 -0
  22. package/build/components/layout/Mini.js +121 -0
  23. package/build/components/layout/Tabs.js +140 -0
  24. package/build/components/layout/index.js +9 -0
  25. package/build/components/menus/LocationPrecisionDoc.js +42 -0
  26. package/build/components/menus/MapBackground.js +110 -0
  27. package/build/components/menus/MapFilters.js +567 -0
  28. package/build/components/menus/MapLayers.js +238 -0
  29. package/build/components/menus/MapLegend.js +68 -0
  30. package/build/components/menus/MiniPictureLegend.js +73 -0
  31. package/build/components/menus/PictureLegend.js +379 -0
  32. package/build/components/menus/PictureMetadata.js +380 -0
  33. package/build/components/menus/PlayerOptions.js +93 -0
  34. package/build/components/menus/QualityScoreDoc.js +42 -0
  35. package/build/components/menus/ReportForm.js +132 -0
  36. package/build/components/menus/SemanticsDoc.js +38 -0
  37. package/build/components/menus/SemanticsDownload.js +33 -0
  38. package/build/components/menus/SemanticsFilters.js +153 -0
  39. package/build/components/menus/SemanticsList.js +413 -0
  40. package/build/components/menus/SemanticsMetadata.js +368 -0
  41. package/build/components/menus/Share.js +105 -0
  42. package/build/components/menus/index.js +22 -0
  43. package/build/components/menus/index_photoviewer.js +11 -0
  44. package/build/components/styles.js +557 -0
  45. package/build/components/ui/AnnotationsSwitch.js +159 -0
  46. package/build/components/ui/Button.js +77 -0
  47. package/build/components/ui/ButtonGroup.css +59 -0
  48. package/build/components/ui/ButtonGroup.js +69 -0
  49. package/build/components/ui/CopyButton.js +110 -0
  50. package/build/components/ui/Grade.js +54 -0
  51. package/build/components/ui/GradeFilter.js +122 -0
  52. package/build/components/ui/IconSwitch.js +193 -0
  53. package/build/components/ui/LinkButton.js +67 -0
  54. package/build/components/ui/ListGroup.js +66 -0
  55. package/build/components/ui/ListItem.js +90 -0
  56. package/build/components/ui/Loader.js +203 -0
  57. package/build/components/ui/Map.css +63 -0
  58. package/build/components/ui/Map.js +853 -0
  59. package/build/components/ui/MapMore.js +175 -0
  60. package/build/components/ui/Photo.css +50 -0
  61. package/build/components/ui/Photo.js +1502 -0
  62. package/build/components/ui/Popup.js +145 -0
  63. package/build/components/ui/ProgressBar.js +104 -0
  64. package/build/components/ui/QualityScore.js +147 -0
  65. package/build/components/ui/SearchBar.js +374 -0
  66. package/build/components/ui/SemanticsEditor.js +191 -0
  67. package/build/components/ui/SemanticsTable.js +88 -0
  68. package/build/components/ui/Switch.js +139 -0
  69. package/build/components/ui/TogglableGroup.js +157 -0
  70. package/build/components/ui/index.js +29 -0
  71. package/build/components/ui/index_photoviewer.js +21 -0
  72. package/build/components/ui/widgets/CopyCoordinates.js +75 -0
  73. package/build/components/ui/widgets/GeoSearch.css +21 -0
  74. package/build/components/ui/widgets/GeoSearch.js +150 -0
  75. package/build/components/ui/widgets/Legend.js +190 -0
  76. package/build/components/ui/widgets/LevelSelect.css +51 -0
  77. package/build/components/ui/widgets/LevelSelect.js +143 -0
  78. package/build/components/ui/widgets/MapFiltersButton.js +114 -0
  79. package/build/components/ui/widgets/MapLayersButton.js +79 -0
  80. package/build/components/ui/widgets/OSMEditors.js +155 -0
  81. package/build/components/ui/widgets/PictureLegendActions.js +99 -0
  82. package/build/components/ui/widgets/Player.css +7 -0
  83. package/build/components/ui/widgets/Player.js +154 -0
  84. package/build/components/ui/widgets/SemanticsFiltersButton.js +65 -0
  85. package/build/components/ui/widgets/Zoom.js +84 -0
  86. package/build/components/ui/widgets/index.js +16 -0
  87. package/build/components/ui/widgets/index_photoviewer.js +7 -0
  88. package/build/esm/components/core/Basic.js +1 -1
  89. package/build/img/arrow_360.svg +14 -0
  90. package/build/img/arrow_flat.svg +11 -0
  91. package/build/img/arrow_triangle.svg +9 -0
  92. package/build/img/arrow_turn.svg +8 -0
  93. package/build/img/bg_aerial.jpg +0 -0
  94. package/build/img/bg_streets.jpg +0 -0
  95. package/build/img/loader_base.jpg +0 -0
  96. package/build/img/logo_dead.svg +91 -0
  97. package/build/img/marker.svg +17 -0
  98. package/build/img/marker_blue.svg +20 -0
  99. package/build/img/osm.svg +49 -0
  100. package/build/img/panoramax.svg +13 -0
  101. package/build/img/switch_big.svg +54 -0
  102. package/build/img/switch_mini.svg +48 -0
  103. package/build/img/wd.svg +1 -0
  104. package/build/index_photoviewer.js +4 -0
  105. package/build/package.json +148 -0
  106. package/build/servers.js +14 -0
  107. package/build/translations/ar.json +1 -0
  108. package/build/translations/be.json +257 -0
  109. package/build/translations/br.json +81 -0
  110. package/build/translations/cy.json +117 -0
  111. package/build/translations/da.json +300 -0
  112. package/build/translations/de.json +309 -0
  113. package/build/translations/en.json +294 -0
  114. package/build/translations/eo.json +235 -0
  115. package/build/translations/es.json +292 -0
  116. package/build/translations/fi.json +1 -0
  117. package/build/translations/fr.json +294 -0
  118. package/build/translations/hr.json +294 -0
  119. package/build/translations/hu.json +294 -0
  120. package/build/translations/it.json +306 -0
  121. package/build/translations/ja.json +182 -0
  122. package/build/translations/ko.json +1 -0
  123. package/build/translations/nl.json +305 -0
  124. package/build/translations/nn.json +1 -0
  125. package/build/translations/pl.json +169 -0
  126. package/build/translations/pt.json +296 -0
  127. package/build/translations/pt_BR.json +304 -0
  128. package/build/translations/sv.json +182 -0
  129. package/build/translations/ti.json +9 -0
  130. package/build/translations/tr.json +297 -0
  131. package/build/translations/uk.json +268 -0
  132. package/build/translations/zh_Hant.json +309 -0
  133. package/build/utils/API.js +928 -0
  134. package/build/utils/InitParameters.js +521 -0
  135. package/build/utils/MapStyleComposer.js +889 -0
  136. package/build/utils/PanoraMapProtocol.js +49 -0
  137. package/build/utils/PhotoAdapter.js +49 -0
  138. package/build/utils/PresetsManager.js +148 -0
  139. package/build/utils/SemanticsMapProtocol.js +144 -0
  140. package/build/utils/URLHandler.js +426 -0
  141. package/build/utils/geocoder.js +203 -0
  142. package/build/utils/i18n.js +128 -0
  143. package/build/utils/index.js +17 -0
  144. package/build/utils/index_photoviewer.js +14 -0
  145. package/build/utils/indoor.js +200 -0
  146. package/build/utils/map.js +788 -0
  147. package/build/utils/picture.js +507 -0
  148. package/build/utils/semantics.js +321 -0
  149. package/build/utils/services.js +148 -0
  150. package/build/utils/utils.js +433 -0
  151. package/build/utils/widgets.js +110 -0
  152. package/package.json +1 -1
@@ -0,0 +1,130 @@
1
+ pnx-viewer {
2
+ position: relative;
3
+ display: block;
4
+ }
5
+
6
+ /* Maximized components */
7
+ pnx-viewer .pnx-map.maplibregl-map,
8
+ pnx-viewer .pnx-psv {
9
+ position: absolute;
10
+ inset: 0;
11
+ z-index: 0;
12
+ }
13
+
14
+ /* No PSV loader */
15
+ pnx-viewer .psv-loader {
16
+ display: none;
17
+ }
18
+
19
+ /* Search bar over other components */
20
+ pnx-widget-geosearch {
21
+ z-index: 129;
22
+ }
23
+
24
+ /* Cornered grid layout */
25
+ pnx-viewer pnx-cornered-grid::part(corner-top-left),
26
+ pnx-viewer pnx-cornered-grid::part(corner-top),
27
+ pnx-viewer pnx-cornered-grid::part(corner-top-right),
28
+ pnx-viewer pnx-cornered-grid::part(corner-bottom-left),
29
+ pnx-viewer pnx-cornered-grid::part(corner-bottom),
30
+ pnx-viewer pnx-cornered-grid::part(corner-bottom-right) {
31
+ gap: 10px;
32
+ padding: 10px;
33
+ }
34
+
35
+ @media screen and (max-width: 576px) {
36
+ pnx-viewer pnx-cornered-grid::part(corner-top-right) {
37
+ flex-direction: column;
38
+ align-items: flex-end;
39
+ justify-content: flex-start;
40
+ }
41
+
42
+ pnx-viewer pnx-cornered-grid::part(corner-top-left) {
43
+ flex-direction: column;
44
+ align-items: flex-start;
45
+ justify-content: flex-start;
46
+ }
47
+
48
+ /* Offset bottom buttons on smartphones */
49
+ pnx-viewer:not(.pnx-iframed) pnx-cornered-grid::part(corner-bottom-right),
50
+ pnx-viewer:not(.pnx-iframed) pnx-cornered-grid::part(corner-bottom-left) {
51
+ margin-bottom: 30px;
52
+ }
53
+ }
54
+
55
+ /* Mini component */
56
+ pnx-viewer pnx-mini {
57
+ box-sizing: border-box;
58
+ aspect-ratio: 1/1;
59
+ min-width: 250px;
60
+ min-height: 250px;
61
+ position: relative;
62
+ display: block;
63
+ z-index: 120;
64
+ }
65
+
66
+ @media screen and ((max-width: 576px)) {
67
+ pnx-viewer pnx-mini {
68
+ min-width: unset;
69
+ min-height: unset;
70
+ }
71
+ }
72
+
73
+ pnx-viewer pnx-mini .psv-container,
74
+ pnx-viewer pnx-mini .pnx-map {
75
+ border-radius: 10px;
76
+ }
77
+
78
+ /* Hidden elements depending on focus */
79
+ pnx-viewer:not(pnx-viewer[focus="map"]) .pnx-only-map,
80
+ pnx-viewer:not(pnx-viewer[focus="pic"]) .pnx-only-psv {
81
+ display: none;
82
+ }
83
+
84
+ /* Override legend positioning */
85
+ @media screen and (min-width: 576px) {
86
+ pnx-viewer pnx-widget-legend:not([light="true"]) {
87
+ position: absolute;
88
+ left: 10px;
89
+ top: 60px;
90
+ }
91
+
92
+ pnx-viewer[focus="pic"] pnx-widget-legend:not([light="true"]) {
93
+ top: 10px;
94
+ width: 100%;
95
+ }
96
+ }
97
+
98
+ /* Hide default map legend */
99
+ pnx-viewer .pnx-map .maplibregl-ctrl-attrib {
100
+ display: none;
101
+ }
102
+
103
+ /* Override geosearch sizing */
104
+ @media screen and (max-width: 576px) {
105
+ pnx-widget-geosearch pnx-search-bar:not([reduced])::part(container) {
106
+ width: 250px;
107
+ max-width: 40vw;
108
+ }
109
+ }
110
+
111
+ /* Hidden widgets on sequence play */
112
+ pnx-viewer.pnx-playing pnx-bottom-drawer,
113
+ pnx-viewer.pnx-playing pnx-mini,
114
+ pnx-viewer.pnx-playing pnx-widget-legend,
115
+ pnx-viewer.pnx-playing pnx-widget-zoom {
116
+ display: none;
117
+ }
118
+
119
+ /* Hidden widgets on grid toggled */
120
+ pnx-viewer .psv-virtual-tour-arrows {
121
+ transition: opacity 0.25s ease-in-out;
122
+ opacity: 100%;
123
+ }
124
+ pnx-viewer.pnx-grid-toggled .psv-virtual-tour-arrows {
125
+ opacity: 0%;
126
+ }
127
+ pnx-viewer.pnx-grid-toggled .psv-virtual-tour-arrows button {
128
+ pointer-events: none;
129
+ cursor: unset;
130
+ }