@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,91 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ width="48"
6
+ height="48"
7
+ viewBox="0 0 12.7 12.7"
8
+ version="1.1"
9
+ id="svg5"
10
+ xml:space="preserve"
11
+ xmlns="http://www.w3.org/2000/svg"
12
+ xmlns:svg="http://www.w3.org/2000/svg"><defs
13
+ id="defs2"><filter
14
+ style="color-interpolation-filters:sRGB;"
15
+ id="filter1345"
16
+ x="-0.2314438"
17
+ y="-0.2314438"
18
+ width="1.4628876"
19
+ height="1.4628876"><feFlood
20
+ flood-opacity="0.498039"
21
+ flood-color="rgb(0,0,0)"
22
+ result="flood"
23
+ id="feFlood1335" /><feComposite
24
+ in="flood"
25
+ in2="SourceGraphic"
26
+ operator="in"
27
+ result="composite1"
28
+ id="feComposite1337" /><feGaussianBlur
29
+ in="composite1"
30
+ stdDeviation="0.5"
31
+ result="blur"
32
+ id="feGaussianBlur1339" /><feOffset
33
+ dx="0"
34
+ dy="0"
35
+ result="offset"
36
+ id="feOffset1341" /><feComposite
37
+ in="SourceGraphic"
38
+ in2="offset"
39
+ operator="over"
40
+ result="composite2"
41
+ id="feComposite1343" /></filter><filter
42
+ style="color-interpolation-filters:sRGB;"
43
+ id="filter1389"
44
+ x="-0.19034556"
45
+ y="-0.19034556"
46
+ width="1.3806911"
47
+ height="1.3806911"><feFlood
48
+ flood-opacity="0.498039"
49
+ flood-color="rgb(0,0,0)"
50
+ result="flood"
51
+ id="feFlood1379" /><feComposite
52
+ in="flood"
53
+ in2="SourceGraphic"
54
+ operator="in"
55
+ result="composite1"
56
+ id="feComposite1381" /><feGaussianBlur
57
+ in="composite1"
58
+ stdDeviation="0.5"
59
+ result="blur"
60
+ id="feGaussianBlur1383" /><feOffset
61
+ dx="0"
62
+ dy="0"
63
+ result="offset"
64
+ id="feOffset1385" /><feComposite
65
+ in="SourceGraphic"
66
+ in2="offset"
67
+ operator="over"
68
+ result="composite2"
69
+ id="feComposite1387" /></filter></defs><g
70
+ id="layer1"><path
71
+ style="fill:#bf674c;fill-opacity:1;stroke:#ffffff;stroke-width:0.661458;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter1389)"
72
+ id="path6342"
73
+ transform="matrix(-0.23019089,-0.85909373,0.85909246,-0.23019564,0.96173083,0.76136943)"
74
+ d="M -1.2578926,1.9117668 A 8.0418425,8.0418425 0 0 1 -9.2997351,9.9536092 V 1.9117668 Z" /><circle
75
+ style="fill:#be621c;fill-opacity:1;stroke:#ffffff;stroke-width:0.88787;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter1345)"
76
+ id="path846"
77
+ cx="7.9277072"
78
+ cy="5.4758525"
79
+ r="3.5514777"
80
+ transform="matrix(0.77024177,0.44469933,-0.44469933,0.77024177,0.96173083,0.76136943)" /><g
81
+ id="g892"
82
+ transform="matrix(1.1784639,0,0,1.1784639,-0.83676862,-1.6599522)"><path
83
+ d="M 3.5996678,9.4106252 H 5.7824803 V 9.8075001 H 3.5996678 Z"
84
+ id="path254"
85
+ style="fill:#ffffff;fill-opacity:1;stroke-width:0.264583" /><path
86
+ d="M 4.1283053,8.2700064 3.8301199,8.0048939 4.0952324,7.7067085 3.7986345,7.4429189 3.533522,7.7411043 3.2353366,7.4759918 2.971547,7.7725898 3.2697324,8.0377023 3.0046199,8.3358877 3.3012178,8.5996772 3.5663303,8.3014918 3.8645157,8.5666043 Z"
87
+ id="path256"
88
+ style="fill:#ffffff;fill-opacity:1;stroke-width:0.264583" /><path
89
+ d="M 6.2780449,7.7069731 5.981447,7.4431835 5.7163345,7.7413689 5.4181491,7.4762564 5.1543595,7.7728543 5.4525449,8.0379668 5.1874324,8.3361522 5.4840303,8.5999418 5.7491428,8.3017564 6.0473282,8.5668689 6.3111178,8.270271 6.0129324,8.0051585 Z"
90
+ id="path258"
91
+ style="fill:#ffffff;fill-opacity:1;stroke-width:0.264583" /></g></g></svg>
@@ -0,0 +1,17 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ width="48"
4
+ height="48"
5
+ viewBox="0 0 48 48"
6
+ version="1.1"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ xmlns:svg="http://www.w3.org/2000/svg">
9
+ <path
10
+ d="m 8.0222924,7.8597977 a 22.594107,22.594107 0 0 1 31.9555636,0.0027 L 24.001409,23.838916 Z"
11
+ style="fill:#bf360c;fill-opacity:1;stroke:#ffffff;stroke-width:2.50003;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
12
+ <circle
13
+ cx="24"
14
+ cy="24"
15
+ r="9.9777565"
16
+ style="fill:#ff6f00;fill-opacity:1;stroke:#ffffff;stroke-width:2.49449;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
17
+ </svg>
@@ -0,0 +1,20 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ width="48"
4
+ height="48"
5
+ viewBox="0 0 12.7 12.7"
6
+ version="1.1"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ xmlns:svg="http://www.w3.org/2000/svg">
9
+ <defs
10
+ id="defs1" />
11
+ <path
12
+ d="M-3.007-.005a5.978 5.978 0 0 1-5.979 5.978V-.005z"
13
+ style="fill:#1a237e;fill-opacity:1;stroke:#fff;stroke-width:0.661458;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
14
+ transform="rotate(-135)"/>
15
+ <circle
16
+ cx="6.35"
17
+ cy="6.545"
18
+ r="2.64"
19
+ style="fill:#1e88e5;fill-opacity:1;stroke:#fff;stroke-width:0.660027;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
20
+ </svg>
@@ -0,0 +1,49 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ width="240mm"
6
+ height="239.99869mm"
7
+ viewBox="0 0 240 239.99869"
8
+ id="svg6743"
9
+ version="1.1"
10
+ xmlns="http://www.w3.org/2000/svg"
11
+ xmlns:svg="http://www.w3.org/2000/svg">
12
+ <defs
13
+ id="defs1" />
14
+ <g
15
+ id="layer1"
16
+ transform="translate(-30,-27.000656)">
17
+ <g
18
+ id="g7426"
19
+ transform="translate(322.142,-53.972906)">
20
+ <path
21
+ style="display:inline;fill:#76c551;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.61532"
22
+ id="path33449"
23
+ d="m -81.063095,208.94609 c -11.906339,9.92421 -27.194885,15.8987 -43.860635,15.8987 -4.95854,0 -9.78728,-0.55158 -14.45059,-1.55504 l -4.79842,5.8446 c -10.66449,-2.85736 -20.38429,-7.94043 -28.6326,-14.74578 l -12.89559,12.92212 1.58177,9.54347 -47.96347,47.98965 4.63827,1.7685 45.04032,-17.15658 45.0402,17.15658 45.040312,-17.15658 17.158544,-45.03976 z" />
24
+ <path
25
+ d="m -272.48495,89.294626 17.1585,45.040274 -17.1585,45.03993 17.1585,45.03972 -17.1585,45.03977 10.53634,4.02267 57.2385,-57.21102 10.26764,1.58169 12.46673,-12.46669 c -7.35519,-8.52221 -12.86173,-18.6902 -15.87027,-29.92032 l 5.8446,-4.79842 c -1.00531,-4.66323 -1.55503,-9.49189 -1.55503,-14.45044 0,-24.76984 13.21043,-46.53472 32.94893,-58.606534 l -21.79693,-8.31063 -45.04019,17.158544 z"
26
+ id="path33447"
27
+ style="display:inline;fill:#76c551;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.61532" />
28
+ <path
29
+ style="display:inline;fill:#59a336;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.61532"
30
+ id="path33451"
31
+ d="m -81.063095,208.94609 c -11.906339,9.92421 -27.194885,15.8987 -43.860635,15.8987 -4.95854,0 -9.78728,-0.55158 -14.45059,-1.55504 l -4.79842,5.8446 -28.67744,-15.11228 -12.85075,13.28862 1.58177,9.54347 46.85284,7.05799 -0.0982,42.70016 45.040313,-17.15658 17.158544,-45.03976 z" />
32
+ <ellipse
33
+ style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:12.7048;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
34
+ id="ellipse33453"
35
+ cx="-122.83165"
36
+ cy="155.70955"
37
+ rx="59.801929"
38
+ ry="60.929199" />
39
+ <path
40
+ style="opacity:1;fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:12.7048;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
41
+ d="m -70.867543,179.77128 c -4.021615,-66.77094 -70.182367,-83.311142 -110.499567,-45.77004 21.03677,-28.56709 48.05279,-46.045197 78.56638,-33.40602 30.51362,12.63913 41.797793,45.98173 31.933187,79.17606 z"
42
+ id="path33455" />
43
+ <path
44
+ id="path33457"
45
+ d="m -73.395575,102.22726 c -28.338185,-28.338264 -74.283665,-28.338264 -102.621895,0 -17.93779,17.93776 -24.48523,42.91327 -19.71413,66.02883 l -11.27485,8.16937 c 5.13477,13.61756 12.1317,21.8574 16.91241,26.2963 l -10.22839,10.22834 h -10.80252 l -81.01705,81.01654 27.00583,27.00561 81.01701,-81.01683 v -10.80225 l 10.19464,-10.19425 c 4.56162,4.75244 12.69997,11.38138 25.75686,16.30469 l 7.86543,-10.90386 c 23.35858,5.12197 48.742245,-1.34701 66.906498,-19.5115 28.338386,-28.33732 28.33819,-74.28276 1.57e-4,-102.62099 z m -12.962835,12.96296 c 21.179095,21.17921 21.179095,55.51685 0,76.69579 -21.17902,21.17897 -55.51721,21.17897 -76.6963,0 -21.17898,-21.17894 -21.17898,-55.51658 0,-76.69579 21.17929,-21.179216 55.51728,-21.179216 76.6963,0 z"
46
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#2f2f2f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:7.76059;marker:none;enable-background:accumulate" />
47
+ </g>
48
+ </g>
49
+ </svg>
@@ -0,0 +1,13 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Generator: Adobe Illustrator 24.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="Calque_1" x="0px" y="0px" width="343.25757mm" height="343.25757mm" viewBox="0 0 1297.3515 1297.3513" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"><metadata id="metadata118"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/></cc:Work></rdf:RDF></metadata><defs id="defs72"><rect x="1150.3843" y="2292.8162" width="2107.8879" height="701.88715" id="rect141823"/><rect x="411.88269" y="1261.6108" width="815.34668" height="181.92911" id="rect66775"/><rect x="253.02008" y="1213.0352" width="2209.7197" height="583.65765" id="rect60279"/><rect x="1150.3843" y="2292.8162" width="2551.0081" height="701.39136" id="rect141823-1"/><linearGradient y2="62.288601" x2="248.6918" y1="231.7114" x1="346.50821" gradientUnits="userSpaceOnUse" id="SVGID_1_" gradientTransform="matrix(6.6326761,0,0,6.6326761,-1221.4079,-713.64667)">
4
+ <stop id="stop4" style="stop-color:#8F2A85" offset="0"/>
5
+ <stop id="stop6" style="stop-color:#2570B6" offset="1"/>
6
+ </linearGradient></defs>
7
+ <style type="text/css" id="style2">
8
+ .st0{fill:url(#SVGID_1_);}
9
+ .st1{fill:#FFFFFF;}
10
+ .st2{display:none;fill:none;stroke:#E62054;stroke-width:7.5;stroke-miterlimit:10;}
11
+ </style>
12
+
13
+ <text y="-2248.8188" style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;white-space:pre;shape-inside:url(#rect60279);display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" id="text60277" xml:space="preserve" transform="matrix(0.99999889,0,0,0.99999889,-164.71991,-165.18467)"/><text y="-4324.1934" x="304.06815" style="font-style:normal;font-weight:normal;font-size:89.8058px;line-height:200%;font-family:Sans;letter-spacing:0px;word-spacing:0px;white-space:pre;shape-inside:url(#rect66775);display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.24515px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" id="text66773" xml:space="preserve" transform="matrix(0.99999889,0,0,0.99999889,-164.71991,-165.18467)"/><text y="-2248.5173" x="-121.66869" style="font-style:normal;font-weight:normal;font-size:40px;line-height:0;font-family:Sans;letter-spacing:0px;word-spacing:0px;white-space:pre;shape-inside:url(#rect141823);display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" id="text141821" xml:space="preserve" transform="matrix(0.99999889,0,0,0.99999889,-164.71991,-165.18467)"/><text y="-3181.1731" x="-158.83984" style="font-style:normal;font-weight:normal;font-size:40px;line-height:0;font-family:Sans;letter-spacing:0px;word-spacing:0px;white-space:pre;shape-inside:url(#rect141823-1);display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" id="text141821-0" xml:space="preserve" transform="matrix(0.99999889,0,0,0.99999889,-164.71991,-165.18467)"/><path style="display:none;fill:none;stroke:#e62054;stroke-width:49.7451;stroke-miterlimit:10" id="path49" d="m 1065.871,503.42011 c -19.2347,0 -35.1531,-15.91842 -35.1531,-35.15318 V 334.28687 H 870.87032 c -19.23476,0 -35.15319,-15.91842 -35.15319,-35.15318 0,-19.23476 15.91843,-35.15319 35.15319,-35.15319 H 1065.871 c 19.2348,0 35.1532,15.91843 35.1532,35.15319 v 169.13324 c 0.6633,19.23476 -15.2551,35.15318 -35.1532,35.15318 z" class="st2"/><path style="display:none;fill:none;stroke:#e62054;stroke-width:49.7451;stroke-miterlimit:10" id="path53" d="M 426.48102,1032.7077 H 231.48034 c -19.23476,0 -35.15318,-15.9185 -35.15318,-35.15322 V 828.42124 c 0,-19.23476 15.91842,-35.15318 35.15318,-35.15318 19.23476,0 35.15318,15.91842 35.15318,35.15318 v 133.31679 h 159.8475 c 19.23476,0 35.15318,15.91842 35.15318,35.15318 0,19.23479 -15.25515,35.81649 -35.15318,35.81649 z" class="st2"/><path style="display:none;fill:none;stroke:#e62054;stroke-width:49.7451;stroke-miterlimit:10" id="path57" d="m 231.48034,503.42011 c -19.23476,0 -35.15318,-15.91842 -35.15318,-35.15318 V 299.13369 c 0,-19.23476 15.91842,-35.15319 35.15318,-35.15319 h 195.00068 c 19.23476,0 35.15318,15.91843 35.15318,35.15319 0,19.23476 -15.91842,35.15318 -35.15318,35.15318 h -159.8475 v 133.31679 c 0.66327,19.89803 -15.25515,35.81645 -35.15318,35.81645 z" class="st2"/><path style="display:none;fill:none;stroke:#e62054;stroke-width:49.7451;stroke-miterlimit:10" id="path61" d="M 1065.871,1032.7077 H 870.87032 c -19.23476,0 -35.15319,-15.9185 -35.15319,-35.15322 0,-19.23476 15.91843,-35.15318 35.15319,-35.15318 H 1030.7179 V 829.08451 c 0,-19.23476 15.9184,-35.15319 35.1531,-35.15319 19.2348,0 35.1532,15.91843 35.1532,35.15319 v 169.13324 c 0.6633,18.57145 -15.2551,34.48995 -35.1532,34.48995 z" class="st2"/><g id="g1" transform="translate(-103.80084,387.319)"><circle style="fill:url(#SVGID_1_);stroke-width:6.63268" id="circle9" r="648.67572" cy="261.35672" cx="752.47656" class="st0"/><path style="fill:#ffffff;stroke-width:6.63268" id="path11" d="m 465.28163,199.67283 c -0.66327,0 -1.32653,0 -1.9898,0 l -36.47972,-10.61228 c -2.65307,-0.66327 -4.64287,-3.31634 -4.64287,-6.63268 v -49.0818 c 0,-1.9898 1.32653,-3.97961 2.65307,-5.30614 1.9898,-1.32654 3.9796,-1.32654 5.96941,-0.66327 l 36.47972,13.26535 c 2.65307,0.66327 4.64287,3.31634 4.64287,5.96941 v 46.42873 c 0,1.98981 -0.66327,3.97961 -2.65307,5.30614 -1.32654,0.66327 -2.65307,1.32654 -3.97961,1.32654 z m -29.84704,-22.5511 23.21437,6.63268 v -33.16338 l -23.21437,-8.62248 z" class="st1"/><path style="fill:#ffffff;stroke-width:6.63268" id="path13" d="m 465.28163,292.53029 c -0.66327,0 -0.66327,0 -1.32653,0 l -36.47972,-7.95921 c -3.31634,-0.66326 -5.30614,-3.31633 -5.30614,-6.63267 V 228.8566 c 0,-1.9898 0.66327,-3.9796 2.65307,-5.30614 1.32653,-1.32653 3.9796,-1.9898 5.96941,-1.32653 l 36.47972,9.28574 c 2.65307,0.66327 5.30614,3.31634 5.30614,6.63268 v 47.75527 c 0,1.9898 -0.66327,3.9796 -2.65307,5.30614 -1.98981,0.66327 -3.31634,1.32653 -4.64288,1.32653 z m -29.84704,-19.89802 23.21437,5.30614 v -34.48992 l -23.21437,-5.96941 z" class="st1"/><path style="fill:#ffffff;stroke-width:6.63268" id="path15" d="m 525.63898,306.45891 c -0.66326,0 -1.32653,0 -1.32653,0 l -36.47972,-8.62247 c -3.31634,-0.66327 -5.30614,-3.31634 -5.30614,-6.63268 v -48.41854 c 0,-1.9898 0.66327,-3.9796 2.65307,-5.30614 1.9898,-1.32653 3.97961,-1.9898 5.96941,-1.32653 l 36.47972,9.28574 c 2.65307,0.66327 5.30614,3.31634 5.30614,6.63268 v 47.75527 c 0,1.9898 -0.66327,3.9796 -2.65307,5.30614 -1.9898,0.66327 -3.31634,1.32653 -4.64288,1.32653 z m -29.84704,-20.56129 23.21437,5.30614 v -34.48992 l -23.21437,-5.96941 z" class="st1"/><path style="fill:#ffffff;stroke-width:6.63268" id="path17" d="m 609.87397,285.23435 c -0.66327,0 -1.32653,0 -1.9898,0 l -43.1124,-14.59189 c -2.65307,-0.66326 -3.9796,-3.31633 -3.9796,-5.30614 v -30.51031 c 0,-1.9898 0.66327,-3.9796 2.65307,-4.64287 1.32653,-1.32654 3.31634,-1.32654 5.30614,-0.66327 l 43.11239,15.91842 c 1.98981,0.66327 3.97961,3.31634 3.97961,5.30614 v 29.18378 c 0,1.9898 -0.66327,3.31634 -2.65307,4.64287 -0.66327,0 -1.9898,0.66327 -3.31634,0.66327 z m -37.14298,-24.5409 31.83684,10.61228 v -17.24496 l -31.83684,-11.93881 z" class="st1"/><path style="fill:#ffffff;stroke-width:6.63268" id="path19" d="m 638.39448,350.23458 c -0.66327,0 -0.66327,0 -1.32654,0 l -41.78586,-9.94902 c -2.65307,-0.66327 -4.64287,-2.65307 -4.64287,-5.30614 v -31.17358 c 0,-1.9898 0.66327,-3.31633 1.9898,-4.64287 1.32654,-1.32653 3.31634,-1.32653 5.30614,-0.66327 l 41.78586,11.27555 c 2.65307,0.66327 3.97961,2.65307 3.97961,5.30614 v 29.84705 c 0,1.9898 -0.66327,3.31633 -1.9898,4.64287 -0.66327,0 -1.98981,0.66327 -3.31634,0.66327 z m -35.81645,-20.5613 30.51031,7.29594 V 319.061 l -30.51031,-7.95921 z" class="st1"/><path style="fill:#ffffff;stroke-width:6.63268" id="path21" d="m 525.63898,218.24432 c -0.66326,0 -1.32653,0 -1.9898,0 l -37.14298,-9.94901 c -2.65307,-0.66327 -4.64288,-3.31634 -4.64288,-6.63268 v -49.0818 c 0,-1.9898 1.32654,-3.97961 2.65307,-5.30614 1.98981,-1.32654 3.97961,-1.32654 5.96941,-0.66327 l 37.14299,13.26535 c 2.65307,0.66327 4.64287,3.31634 4.64287,5.96941 v 45.76547 c 0,1.9898 -0.66327,3.9796 -2.65307,5.30614 -1.32653,0.66326 -2.65307,1.32653 -3.97961,1.32653 z m -30.51031,-21.88783 23.87764,6.63268 v -32.50012 l -23.87764,-8.62247 z" class="st1"/><path style="fill:#ffffff;stroke-width:6.63268" id="path23" d="m 690.79262,356.86725 c -8.62248,0 -15.25516,-7.95921 -15.25516,-17.24496 0,-9.28574 6.63268,-17.24495 15.25516,-17.24495 8.62248,0 15.25515,7.95921 15.25515,17.24495 0,9.28575 -6.63267,17.24496 -15.25515,17.24496 z m 0,-25.20417 c -3.31634,0 -5.96941,3.31634 -5.96941,7.95921 0,4.64288 2.65307,7.95922 5.96941,7.95922 3.31634,0 5.96941,-3.31634 5.96941,-7.95922 0,-4.64287 -2.65307,-7.95921 -5.96941,-7.95921 z" class="st1"/><path style="fill:#ffffff;stroke-width:6.63268" id="path25" d="m 1041.6612,199.67283 c -1.3265,0 -2.6531,-0.66327 -3.9796,-1.32654 -1.9898,-1.32653 -2.6531,-3.31633 -2.6531,-5.30614 v -46.42873 c 0,-2.65307 1.9898,-5.30614 4.6429,-5.96941 l 36.4797,-13.26535 c 1.9898,-0.66327 3.9796,-0.66327 5.9694,0.66327 1.9898,1.32653 2.6531,3.31634 2.6531,5.30614 v 49.0818 c 0,2.65307 -1.9898,5.30614 -4.6429,6.63268 l -36.4797,10.61228 c -0.6633,0 -1.3265,0 -1.9898,0 z m 6.6327,-48.41854 v 33.16338 l 23.2143,-6.63267 v -34.48992 z" class="st1"/><path style="fill:#ffffff;stroke-width:6.63268" id="path27" d="m 1041.6612,292.53029 c -1.3265,0 -2.6531,-0.66326 -3.9796,-1.32653 -1.3266,-1.32654 -2.6531,-3.31634 -2.6531,-5.30614 v -47.75527 c 0,-3.31634 1.9898,-5.96941 5.3062,-6.63268 l 36.4797,-9.28574 c 1.9898,-0.66327 3.9796,0 5.9694,1.32653 1.3265,1.32654 2.653,3.31634 2.653,5.30614 v 49.08181 c 0,3.31634 -1.9898,5.96941 -5.3061,6.63267 l -36.4797,7.95921 c -1.3265,0 -1.3265,0 -1.9898,0 z m 6.6327,-49.0818 v 34.48992 l 23.2143,-5.30614 v -35.15319 z" class="st1"/><path style="fill:#ffffff;stroke-width:6.63268" id="path29" d="m 981.9671,306.45891 c -1.32653,0 -2.65307,-0.66326 -3.97961,-1.32653 -1.32653,-1.32654 -2.65307,-3.31634 -2.65307,-5.30614 v -47.75527 c 0,-3.31634 1.98981,-5.96941 5.30615,-6.63268 l 36.47973,-9.28574 c 1.9898,-0.66327 3.9796,0 5.9694,1.32653 1.3265,1.32654 2.6531,3.31634 2.6531,5.30614 v 48.41854 c 0,3.31634 -1.9898,5.96941 -5.3062,6.63268 l -36.4797,8.62247 c -0.66326,0 -1.32653,0 -1.9898,0 z m 6.63268,-49.0818 v 34.48992 l 23.21432,-5.30614 v -34.48992 z" class="st1"/><path style="fill:#ffffff;stroke-width:6.63268" id="path31" d="m 897.06885,285.23435 c -1.32654,0 -2.65307,-0.66327 -3.31634,-1.32653 -1.32654,-1.32654 -2.65307,-2.65307 -2.65307,-4.64288 v -29.18377 c 0,-2.65307 1.32653,-4.64288 3.9796,-5.30614 l 43.77567,-15.91843 c 1.9898,-0.66326 3.9796,-0.66326 5.30614,0.66327 1.32653,1.32654 2.65307,2.65307 2.65307,4.64287 v 30.51031 c 0,2.65308 -1.32654,4.64288 -3.97961,5.30615 l -43.77566,14.59188 c -0.66327,0.66327 -1.32654,0.66327 -1.9898,0.66327 z m 5.9694,-31.17358 v 17.24496 l 32.50012,-10.61228 v -17.90823 z" class="st1"/><path style="fill:#ffffff;stroke-width:6.63268" id="path33" d="m 865.89527,349.57131 c -1.32654,-1.32654 -1.9898,-2.65307 -1.9898,-4.64287 v -29.84705 c 0,-2.65307 1.9898,-4.64287 3.9796,-5.30614 l 41.78586,-11.27555 c 1.9898,-0.66326 3.31634,0 5.30614,0.66327 1.32654,1.32654 1.9898,2.65307 1.9898,4.64287 v 31.17358 c 0,2.65307 -1.9898,5.30614 -4.64287,5.30614 l -41.78586,9.94902 c -0.66327,0.66326 -3.9796,0 -4.64287,-0.66327 z m 9.28575,-29.84704 v 17.90822 l 30.51031,-7.29594 v -19.23476 z" class="st1"/><path style="fill:#ffffff;stroke-width:6.63268" id="path35" d="m 981.9671,218.24432 c -1.32653,0 -2.65307,-0.66327 -3.97961,-1.32653 -1.32653,-1.32654 -2.65307,-3.31634 -2.65307,-5.30614 v -45.76547 c 0,-2.65307 1.98981,-5.30614 4.64288,-5.96941 l 36.4797,-13.26535 c 1.9898,-0.66327 3.9796,-0.66327 5.9694,0.66327 1.9898,1.32653 2.6531,3.31634 2.6531,5.30614 v 49.0818 c 0,3.31634 -1.9898,5.30614 -4.6429,6.63268 l -36.4797,9.94901 c -0.66326,0 -1.32653,0 -1.9898,0 z m 6.63268,-47.75527 v 32.50012 l 23.21432,-6.63268 v -34.48991 z" class="st1"/><path style="fill:#ffffff;stroke-width:6.63268" id="path37" d="m 816.81347,356.86725 c -8.62248,0 -15.25516,-7.95921 -15.25516,-17.24496 0,-9.28574 6.63268,-17.24495 15.25516,-17.24495 8.62247,0 15.25515,7.95921 15.25515,17.24495 0,9.28575 -6.63268,17.24496 -15.25515,17.24496 z m 0,-25.20417 c -3.31634,0 -5.96941,3.31634 -5.96941,7.95921 0,4.64288 2.65307,7.95922 5.96941,7.95922 3.31633,0 5.9694,-3.31634 5.9694,-7.95922 0,-4.64287 -2.65307,-7.95921 -5.9694,-7.95921 z" class="st1"/><path style="fill:#ffffff;stroke-width:6.63268" id="path39" d="m 1275.7947,-13.236074 c 0,-1.326535 0,-1.989803 0,-3.316338 -1.3266,-3.316338 -5.3062,-5.306141 -8.6225,-3.979606 l -37.143,13.9286203 V 7.3252221 13.957898 l 32.5001,-15.2551549 V 529.31683 h -32.5001 v 13.26535 h 39.1328 c 3.9796,0 6.6327,-2.65307 7.2959,-6.63267 V -11.909539 c 0,0 0,-0.663267 -0.6632,-1.326535 z" class="st1"/><path style="fill:#ffffff;stroke-width:6.63268" id="path41" d="m 1108.6512,53.090687 v -13.92862 l -33.1634,12.602085 c -0.6632,0 -0.6632,0.663268 -1.3265,0.663268 0,0 -113.41876,69.6431 -115.40857,70.96963 -1.9898,1.32654 -3.9796,3.31634 -3.9796,5.96941 v 37.80626 l -109.43916,65.00022 c -1.9898,0.66327 -3.31634,3.31634 -3.31634,5.30614 l -0.66326,31.83685 -59.69409,35.15318 c -3.31634,1.9898 -1.9898,6.63268 -1.9898,9.94902 0,3.31633 0,72.29616 0,72.29616 l -25.20417,-9.28574 c -1.32654,-0.66327 -3.31634,-0.66327 -4.64287,0 l -22.5511,9.28574 c 0,0 0,-71.6329 0,-72.29616 0,-3.97961 0.66327,-7.29595 -2.65307,-9.28575 l -59.69409,-35.15318 -0.66326,-31.83685 c 0,-1.9898 -1.32654,-3.97961 -3.31634,-5.30614 L 552.16969,168.49925 v -39.13279 c 0,-2.65307 -1.32654,-4.64287 -3.97961,-5.96941 l -8.62248,-3.9796 -130.66371,-78.928847 c -0.66327,0 -0.66327,-0.663268 -1.32654,-0.663268 l -9.28575,-3.979606 v 14.591888 l 3.97961,1.989803 31.17358,19.898028 -25.20417,-11.27555 c -0.66327,0 -0.66327,0 -0.66327,0 l -9.28575,-5.30614 v 15.918422 458.98119 13.26535 h 5.96941 c 1.9898,0 3.31634,-0.66327 5.30614,-1.9898 1.98981,-1.32654 342.90936,-150.56175 342.90936,-150.56175 0,0 346.88899,151.88828 348.87879,152.55155 1.9898,0.66327 7.2959,0 7.2959,0 V 530.64337 71.66218 57.73356 l -60.3573,26.530705 31.8368,-19.898028 z M 502.42462,485.54117 451.35301,508.09227 V 343.6019 l 51.07161,9.28575 z m 35.81645,-290.51121 v 273.92952 l -22.5511,9.94901 V 347.58151 c 0,-3.31634 -1.9898,-5.96941 -5.30614,-6.63268 l -64.33696,-11.27555 c -1.9898,-0.66327 -3.9796,0 -5.30614,1.32654 -1.9898,1.32653 -2.65307,3.31633 -2.65307,5.30614 v 177.09245 l -26.5307,11.93882 V 76.968321 l 119.38817,53.061409 7.29594,3.97961 z m 13.92862,-11.27555 47.092,27.85724 -47.092,-20.5613 z m 35.81645,183.72512 27.85724,3.97961 0.66327,63.01042 -27.85724,11.93882 z m 61.68389,-76.93904 c 0,0.66327 0,1.9898 0,2.65307 v 126.68412 l -22.5511,9.94901 -0.66327,-63.01042 c 0,-3.31634 -1.9898,-5.30614 -4.64287,-5.96941 L 582.68,354.87745 c -1.9898,0 -3.31634,0 -4.64287,1.32653 -1.32654,1.32654 -1.98981,2.65308 -1.98981,4.64288 l 0.66327,90.86766 -24.5409,10.61228 V 204.97897 l 97.50034,43.11239 z m 13.26535,-5.96941 11.93882,7.29595 -11.93882,-3.97961 z m 33.16338,115.40857 -11.27555,5.30614 v -31.17358 l 11.27555,1.32654 z m 17.90823,-7.95921 -8.62248,3.31633 V 370.1326 c 0,-2.65307 -1.98981,-4.64287 -4.64288,-4.64287 l -20.56129,-1.32653 c -1.32654,0 -2.65307,0.66326 -3.31634,1.32653 -0.66327,0.66327 -1.32654,1.9898 -1.32654,3.31634 v 40.45932 l -12.60208,5.30614 V 302.47931 l 51.07161,17.24496 z m 108.11262,11.93881 -11.27555,-5.30614 v -24.5409 l 11.27555,-0.66327 z m 21.88783,9.94902 -13.26535,-5.96941 v -39.13279 c 0,-1.32654 -0.66327,-2.65307 -1.32654,-3.31634 -0.66327,-0.66327 -1.9898,-1.32653 -3.31634,-1.32653 l -20.56129,1.32653 c -2.65307,0 -4.64288,1.9898 -4.64288,4.64287 v 24.54091 l -7.95921,-3.31634 v -72.95944 l 51.07161,-16.58169 z m 0,-125.35758 -22.5511,7.29594 22.5511,-13.26535 z m 72.29617,157.19442 -27.85724,-12.60208 0.66327,-63.67369 27.85723,-3.97961 z m 38.46952,17.24496 -27.19397,-11.93882 0.66326,-91.53093 c 0,-1.9898 -0.66326,-3.31634 -1.9898,-4.64287 -1.32653,-1.32654 -2.65307,-1.32654 -4.64287,-1.32654 l -39.13279,5.96941 c -2.65307,0.66327 -4.64287,3.31634 -4.64287,5.96941 l -0.66327,63.01042 -19.89803,-8.62247 v -126.68412 -45.1022 l 97.50034,-43.11239 z m 0,-271.93972 -57.04102,25.20417 57.04102,-33.82665 z M 1001.8651,484.8779 V 350.89784 l 51.0716,-8.62247 V 506.76573 Z M 1094.7226,77.631589 V 526.00049 l -28.5205,-12.60208 V 334.97942 c 0,-1.9898 -1.3265,-3.9796 -2.6531,-5.30614 -1.3265,-1.32653 -3.3163,-1.9898 -5.3061,-1.32653 l -64.33698,11.27554 c -3.31634,0.66327 -5.30614,3.31634 -5.30614,6.63268 v 132.65352 l -19.89803,-8.62248 -0.66327,-335.61341 z" class="st1"/><path style="fill:#ffffff;stroke-width:6.63268" id="path43" d="M 243.08698,-0.63398925 274.92383,13.957898 V 9.9782925 -3.9503273 l -28.52051,-9.9490137 -7.29594,-3.316338 c -2.65307,-0.663268 -4.64288,-0.663268 -6.63268,0.663267 -1.9898,0.663268 -3.31634,3.316338 -3.31634,5.306141 V 536.61277 c 0,3.97961 2.65307,6.63268 6.63268,6.63268 h 39.13279 V 529.9801 h -31.83685 z" class="st1"/><path style="fill:#ffffff;stroke-width:6.63268" id="path51" d="m 1169.6718,118.09091 c -20.5613,0 -37.143,-16.58169 -37.143,-37.142983 V -51.042328 H 974.67116 c -20.5613,0 -37.14299,-16.58169 -37.14299,-37.142986 0,-20.561296 16.58169,-37.142986 37.14299,-37.142986 h 195.00064 c 20.5613,0 37.143,16.58169 37.143,37.142986 V 80.947927 c 0,20.561293 -16.5817,37.142983 -37.143,37.142983 z" class="st1"/><path style="fill:#ffffff;stroke-width:6.63268" id="path55" d="M 530.28186,647.37847 H 335.28118 c -20.5613,0 -37.14299,-16.58169 -37.14299,-37.14299 V 441.10224 c 0,-20.5613 16.58169,-37.14299 37.14299,-37.14299 20.5613,0 37.14299,16.58169 37.14299,37.14299 v 131.99025 h 157.85769 c 20.56129,0 37.14298,16.58169 37.14298,37.14299 0,20.5613 -16.58169,37.14299 -37.14298,37.14299 z" class="st1"/><path style="fill:#ffffff;stroke-width:6.63268" id="path59" d="m 335.28118,118.09091 c -20.5613,0 -37.14299,-16.58169 -37.14299,-37.142983 V -88.185314 c 0,-20.561296 16.58169,-37.142986 37.14299,-37.142986 h 195.00068 c 20.56129,0 37.14298,16.58169 37.14298,37.142986 0,20.561296 -16.58169,37.142986 -37.14298,37.142986 H 372.42417 V 80.947927 c 0,20.561293 -16.58169,37.142983 -37.14299,37.142983 z" class="st1"/><path style="fill:#ffffff;stroke-width:6.63268" id="path63" d="M 1169.6718,647.37847 H 974.67116 c -20.5613,0 -37.14299,-16.58169 -37.14299,-37.14299 0,-20.5613 16.58169,-37.14299 37.14299,-37.14299 H 1132.5288 V 441.10224 c 0,-20.5613 16.5817,-37.14299 37.143,-37.14299 20.5613,0 37.143,16.58169 37.143,37.14299 v 169.13324 c 0,20.5613 -16.5817,37.14299 -37.143,37.14299 z" class="st1"/></g></svg>
@@ -0,0 +1,54 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ version="1.1"
4
+ x="0px"
5
+ y="0px"
6
+ viewBox="0 0 90.455002 90.452003"
7
+ id="svg10"
8
+ width="90.455002"
9
+ height="90.452003"
10
+ xmlns="http://www.w3.org/2000/svg"
11
+ xmlns:svg="http://www.w3.org/2000/svg">
12
+ <defs
13
+ id="defs1" />
14
+ <path
15
+ d="m 2.512,90.45 h 8.012 12.834 c 0.008,0 0.014,0.002 0.02,0.002 h 15.423 c 0.008,0 0.014,-0.002 0.02,-0.002 h 1.164 c 1.387,0 2.512,-1.125 2.512,-2.512 V 52.813 l 27.52,-27.516 v 19.109 c 0,1.386 1.125,2.512 2.514,2.512 1.387,0 2.512,-1.126 2.512,-2.512 V 19.233 c 0,-1.387 -1.125,-2.514 -2.512,-2.514 H 47.356 c -1.389,0 -2.514,1.127 -2.514,2.514 0,1.387 1.125,2.512 2.514,2.512 H 66.463 L 40.226,47.977 c -0.08,-0.008 -0.16,-0.023 -0.242,-0.023 H 2.512 C 1.125,47.954 0,49.079 0,50.466 v 1.188 15.424 12.854 8.008 c 0,1.385 1.125,2.51 2.512,2.51 z M 5.025,79.93 V 67.077 52.977 H 37.471 V 85.424 H 10.523 5.025 Z"
16
+ id="path1"
17
+ style="fill:#2954e9;fill-opacity:1" />
18
+ <path
19
+ d="m 67.078,90.452 c 1.389,0 2.514,-1.125 2.514,-2.514 0,-1.387 -1.125,-2.512 -2.514,-2.512 H 51.655 c -1.387,0 -2.512,1.125 -2.512,2.512 0,1.389 1.125,2.514 2.512,2.514 z"
20
+ id="path2"
21
+ style="fill:#2954e9;fill-opacity:1" />
22
+ <path
23
+ d="m 90.455,79.93 c 0,-1.387 -1.125,-2.512 -2.514,-2.512 -1.387,0 -2.512,1.125 -2.512,2.512 v 5.496 h -5.496 c -1.389,0 -2.512,1.125 -2.512,2.512 0,1.389 1.123,2.514 2.512,2.514 h 8.008 c 1.389,0 2.514,-1.125 2.514,-2.514 z"
24
+ id="path3"
25
+ style="fill:#2954e9;fill-opacity:1" />
26
+ <path
27
+ d="m 87.942,41.311 c 1.387,0 2.512,-1.127 2.512,-2.514 V 23.373 c 0,-1.387 -1.125,-2.512 -2.512,-2.512 -1.389,0 -2.514,1.125 -2.514,2.512 v 15.424 c 0,1.387 1.125,2.514 2.514,2.514 z"
28
+ id="path4"
29
+ style="fill:#2954e9;fill-opacity:1" />
30
+ <path
31
+ d="m 85.428,67.075 c 0,1.387 1.125,2.512 2.514,2.512 1.387,0 2.512,-1.125 2.512,-2.512 V 51.651 c 0,-1.387 -1.125,-2.512 -2.512,-2.512 -1.389,0 -2.514,1.125 -2.514,2.512 z"
32
+ id="path5"
33
+ style="fill:#2954e9;fill-opacity:1" />
34
+ <path
35
+ d="m 87.942,0 h -8.008 c -1.389,0 -2.512,1.127 -2.512,2.514 0,1.387 1.123,2.512 2.512,2.512 h 5.494 v 5.496 c 0,1.387 1.125,2.514 2.514,2.514 1.387,0 2.512,-1.127 2.512,-2.514 V 2.514 C 90.453,1.127 89.328,0 87.942,0 Z"
36
+ id="path6"
37
+ style="fill:#2954e9;fill-opacity:1" />
38
+ <path
39
+ d="m 23.377,5.024 h 15.422 c 1.389,0 2.514,-1.125 2.514,-2.512 C 41.313,1.125 40.188,0 38.799,0 H 23.377 c -1.389,0 -2.514,1.125 -2.514,2.512 0,1.387 1.125,2.512 2.514,2.512 z"
40
+ id="path7"
41
+ style="fill:#2954e9;fill-opacity:1" />
42
+ <path
43
+ d="m 51.653,5.024 h 15.424 c 1.389,0 2.514,-1.125 2.514,-2.512 C 69.591,1.125 68.466,0 67.077,0 H 51.653 c -1.387,0 -2.512,1.125 -2.512,2.512 0,1.387 1.125,2.512 2.512,2.512 z"
44
+ id="path8"
45
+ style="fill:#2954e9;fill-opacity:1" />
46
+ <path
47
+ d="m 2.512,13.033 c 1.389,0 2.514,-1.125 2.514,-2.514 V 5.024 h 5.498 c 1.387,0 2.512,-1.125 2.512,-2.512 C 13.036,1.125 11.911,0 10.524,0 H 2.512 C 1.125,0 0,1.125 0,2.512 v 8.008 c 0,1.388 1.125,2.513 2.512,2.513 z"
48
+ id="path9"
49
+ style="fill:#2954e9;fill-opacity:1" />
50
+ <path
51
+ d="m 2.512,41.311 c 1.389,0 2.514,-1.125 2.514,-2.512 V 23.375 C 5.026,21.988 3.901,20.863 2.512,20.863 1.125,20.863 0,21.988 0,23.375 v 15.424 c 0,1.387 1.125,2.512 2.512,2.512 z"
52
+ id="path10"
53
+ style="fill:#2954e9;fill-opacity:1" />
54
+ </svg>
@@ -0,0 +1,48 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ version="1.1"
4
+ x="0px"
5
+ y="0px"
6
+ viewBox="0 0 90.169998 90.171997"
7
+ enable-background="new 0 0 91 91"
8
+ id="svg12"
9
+ width="90.169998"
10
+ height="90.171997"
11
+ xmlns="http://www.w3.org/2000/svg"
12
+ xmlns:svg="http://www.w3.org/2000/svg">
13
+ <defs
14
+ id="defs1" />
15
+ <path
16
+ d="m 45.832,18.039 c -1.388,0 -2.513,1.125 -2.513,2.512 V 45.64 c 0,1.39 1.125,2.515 2.513,2.515 h 25.089 c 1.389,0 2.512,-1.125 2.512,-2.515 0,-1.386 -1.123,-2.511 -2.512,-2.511 H 51.894 L 79.386,15.635 c 0.982,-0.98 0.982,-2.57 0,-3.553 -0.98,-0.98 -2.572,-0.98 -3.553,0 L 48.343,39.576 V 20.551 c 0,-1.387 -1.125,-2.512 -2.511,-2.512 z"
17
+ id="path1" />
18
+ <path
19
+ d="m 2.512,90.171 h 0.002 7.982 12.808 15.372 1.182 c 1.388,0 2.514,-1.125 2.514,-2.514 v -37.35 c 0,-1.387 -1.126,-2.512 -2.514,-2.512 H 2.514 c -1.389,0 -2.513,1.125 -2.513,2.512 v 1.17 C 0.001,51.481 0,51.487 0,51.491 v 15.373 c 0,0.006 0.001,0.01 0.001,0.016 V 79.661 C 0.001,79.665 0,79.671 0,79.675 v 7.982 c 0,1.389 1.124,2.514 2.512,2.514 z M 5.026,52.819 H 37.345 V 85.145 H 23.304 10.497 5.026 Z"
20
+ id="path2" />
21
+ <path
22
+ d="m 51.487,85.145 c -1.389,0 -2.514,1.125 -2.514,2.512 0,1.389 1.125,2.514 2.514,2.514 H 66.86 c 1.387,0 2.512,-1.125 2.512,-2.514 0,-1.387 -1.125,-2.512 -2.512,-2.512 z"
23
+ id="path3" />
24
+ <path
25
+ d="m 87.657,77.163 c -1.389,0 -2.514,1.125 -2.514,2.512 v 5.471 h -5.469 c -1.389,0 -2.514,1.125 -2.514,2.512 0,1.389 1.125,2.514 2.514,2.514 h 7.983 c 1.387,0 2.512,-1.125 2.512,-2.514 v -7.982 c 0,-1.388 -1.125,-2.513 -2.512,-2.513 z"
26
+ id="path4" />
27
+ <path
28
+ d="m 87.657,48.979 c -1.389,0 -2.514,1.125 -2.514,2.512 v 15.373 c 0,1.387 1.125,2.514 2.514,2.514 1.387,0 2.512,-1.127 2.512,-2.514 V 51.491 c 0,-1.387 -1.125,-2.512 -2.512,-2.512 z"
29
+ id="path5" />
30
+ <path
31
+ d="m 87.657,20.795 c -1.389,0 -2.514,1.125 -2.514,2.512 V 38.68 c 0,1.387 1.125,2.512 2.514,2.512 1.387,0 2.512,-1.125 2.512,-2.512 V 23.307 c 0,-1.387 -1.125,-2.512 -2.512,-2.512 z"
32
+ id="path6" />
33
+ <path
34
+ d="m 87.657,0.002 h -7.982 c -1.389,0 -2.514,1.125 -2.514,2.512 0,1.387 1.125,2.512 2.514,2.512 h 5.469 v 5.471 c 0,1.387 1.125,2.512 2.514,2.512 1.387,0 2.512,-1.125 2.512,-2.512 V 2.514 C 90.169,1.127 89.044,0.002 87.657,0.002 Z"
35
+ id="path7" />
36
+ <path
37
+ d="m 38.678,5.024 c 1.389,0 2.513,-1.125 2.513,-2.512 C 41.191,1.125 40.067,0 38.678,0 H 23.305 c -1.387,0 -2.512,1.125 -2.512,2.512 0,1.387 1.125,2.512 2.512,2.512 z"
38
+ id="path8" />
39
+ <path
40
+ d="m 66.86,5.024 c 1.389,0 2.514,-1.125 2.514,-2.512 C 69.374,1.125 68.249,0 66.86,0 H 51.489 c -1.389,0 -2.514,1.125 -2.514,2.512 0,1.387 1.125,2.512 2.514,2.512 z"
41
+ id="path9" />
42
+ <path
43
+ d="m 2.512,13.006 c 1.389,0 2.513,-1.125 2.513,-2.512 v -5.47 h 5.468 c 1.389,0 2.513,-1.125 2.513,-2.512 C 13.006,1.125 11.882,0 10.493,0 H 2.513 C 1.125,0 10e-4,1.125 10e-4,2.512 v 7.982 C 0,11.881 1.124,13.006 2.512,13.006 Z"
44
+ id="path10" />
45
+ <path
46
+ d="m 2.512,41.192 c 1.389,0 2.513,-1.125 2.513,-2.512 V 23.307 C 5.025,21.92 3.901,20.795 2.512,20.795 1.124,20.795 0,21.92 0,23.307 V 38.68 c 0,1.387 1.124,2.512 2.512,2.512 z"
47
+ id="path11" />
48
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 18"><path d="M2.5 1h1v16h-1zm2 0h3v16h-3zm4 0h3v16h-3z" fill="#900"/><path d="M12.5 1h1v16h-1zm2 0h1v16h-1zm12 0h1v16h-1zm2 0h1v16h-1z" fill="#396"/><path d="M16.5 1h3v16h-3zm4 0h1v16h-1zm2 0h3v16h-3z" fill="#069"/></svg>
@@ -0,0 +1,4 @@
1
+ // Lightweight export for PhotoViewer
2
+ export * as components from "./components/index_photoviewer.js";
3
+ export * as utils from "./utils/index_photoviewer.js";
4
+ export {default as PhotoViewer} from "./components/core/PhotoViewer.js";
@@ -0,0 +1,148 @@
1
+ {
2
+ "name": "@panoramax/web-viewer",
3
+ "version": "5.0.0",
4
+ "description": "Panoramax web viewer for geolocated pictures",
5
+ "main": "./build/index.js",
6
+ "type": "module",
7
+ "files": [
8
+ "build"
9
+ ],
10
+ "exports": {
11
+ ".": {
12
+ "import": "./build/index.js"
13
+ }
14
+ },
15
+ "author": "Panoramax team",
16
+ "scripts": {
17
+ "start": "web-dev-server --config config/web-dev-server.config.mjs",
18
+ "build": "node scripts/build.js",
19
+ "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
20
+ "lint": "npx eslint --fix src/",
21
+ "doc": "node scripts/doc.js",
22
+ "trypublish": "npm publish || true"
23
+ },
24
+ "repository": {
25
+ "type": "git",
26
+ "url": "https://gitlab.com/panoramax/clients/web-viewer"
27
+ },
28
+ "homepage": ".",
29
+ "keywords": [
30
+ "library",
31
+ "panoramax",
32
+ "pictures",
33
+ "geolocated"
34
+ ],
35
+ "publishConfig": {
36
+ "access": "public"
37
+ },
38
+ "license": "MIT",
39
+ "devDependencies": {
40
+ "@eslint/js": "^9.39.4",
41
+ "@rollup/plugin-commonjs": "^29.0.2",
42
+ "@rollup/plugin-image": "^3.0.3",
43
+ "@rollup/plugin-json": "^6.1.0",
44
+ "@rollup/plugin-node-resolve": "^16.0.3",
45
+ "@rollup/plugin-replace": "^6.0.3",
46
+ "@rollup/plugin-terser": "^1.0.0",
47
+ "@rollup/plugin-url": "^8.0.2",
48
+ "@web/dev-server": "^0.4.6",
49
+ "@web/dev-server-rollup": "^0.6.4",
50
+ "eslint": "^9.39.4",
51
+ "eslint-plugin-import": "^2.32.0",
52
+ "eslint-plugin-jest": "^29.15.2",
53
+ "eslint-plugin-jsdoc": "^62.9.0",
54
+ "globals": "^17.5.0",
55
+ "identity-obj-proxy": "^3.0.0",
56
+ "jest": "^30.3.0",
57
+ "jest-environment-jsdom": "^30.3.0",
58
+ "jest-fixed-jsdom": "^0.0.11",
59
+ "jsdoc-to-markdown": "^9.1.1",
60
+ "rollup": "^4.60.2",
61
+ "rollup-plugin-import-css": "^4.2.1",
62
+ "rollup-plugin-lit-css": "^6.0.1",
63
+ "rollup-plugin-postcss": "^4.0.2",
64
+ "whatwg-url": "^16.0.1"
65
+ },
66
+ "dependencies": {
67
+ "@fontsource/atkinson-hyperlegible-next": "^5.2.2",
68
+ "@fortawesome/fontawesome-svg-core": "^6.7.2",
69
+ "@fortawesome/free-regular-svg-icons": "^6.7.2",
70
+ "@fortawesome/free-solid-svg-icons": "^6.7.2",
71
+ "@maplibre/vt-pbf": "^4.0.3",
72
+ "@photo-sphere-viewer/core": "5.14.1",
73
+ "@photo-sphere-viewer/equirectangular-tiles-adapter": "5.14.1",
74
+ "@photo-sphere-viewer/markers-plugin": "5.14.1",
75
+ "@photo-sphere-viewer/virtual-tour-plugin": "5.14.1",
76
+ "geojson-vt": "^4.0.2",
77
+ "iconify-icon": "^3.0.0",
78
+ "json5": "^2.2.3",
79
+ "lit": "^3.2.1",
80
+ "maplibre-gl": "^5.17.0",
81
+ "pmtiles": "^4.3.0",
82
+ "shadow-dom-selector": "^6.1.0"
83
+ },
84
+ "panoramax": {
85
+ "importmap": {
86
+ "@fortawesome/fontawesome-svg-core": "@6.7.2/index.mjs",
87
+ "@fortawesome/free-regular-svg-icons": "@6.7.2/index.mjs",
88
+ "@fortawesome/free-solid-svg-icons": "@6.7.2/index.mjs",
89
+ "@maplibre/vt-pbf": "@4.3.0/dist/index.es.js",
90
+ "@mapbox/vector-tile": "@2.0.4/index.js",
91
+ "@photo-sphere-viewer/core": "@5.14.1/index.module.js",
92
+ "@photo-sphere-viewer/core/": "@5.14.1/",
93
+ "@photo-sphere-viewer/equirectangular-tiles-adapter": "@5.14.1/index.module.js",
94
+ "@photo-sphere-viewer/markers-plugin": "@5.14.1/index.module.js",
95
+ "@photo-sphere-viewer/markers-plugin/": "@5.14.1/",
96
+ "@photo-sphere-viewer/virtual-tour-plugin": "@5.14.1/index.module.js",
97
+ "@photo-sphere-viewer/virtual-tour-plugin/": "@5.14.1/",
98
+ "geojson-vt": "@4.0.2/src/index.js",
99
+ "iconify-icon": "@3.0.2/dist/iconify-icon.mjs",
100
+ "json5": "@2.2.3/dist/index.min.mjs",
101
+ "lit": "@3.3.2/index.js",
102
+ "lit/": "@3.3.2/",
103
+ "lit-html": "@3.3.2/lit-html.js",
104
+ "lit-html/": "@3.3.2/",
105
+ "lit-element/": "@4.2.2/",
106
+ "maplibre-gl": "@5.21.1/dist/maplibre-gl.js",
107
+ "maplibre-gl/": "@5.21.1/",
108
+ "@fontsource/atkinson-hyperlegible-next/": "@latest/",
109
+ "pmtiles": "@4.4.0/dist/esm/index.js",
110
+ "@panoramax/web-viewer": "./src/index.js",
111
+ "@lit/reactive-element": "@2.1.2/reactive-element.js",
112
+ "@mapbox/point-geometry": "@1.1.0/index.js",
113
+ "fflate": "@0.8.2/esm/browser.js",
114
+ "pbf": "@4.0.1/index.js",
115
+ "three": "@0.179.1/build/three.module.js",
116
+ "shadow-dom-selector": "@6.1.0/dist/esm/index.js",
117
+ "get-promisable-result": "@2.0.0/dist/esm/index.js"
118
+ }
119
+ },
120
+ "jest": {
121
+ "clearMocks": true,
122
+ "testPathIgnorePatterns": [
123
+ "<rootDir>/node_modules/",
124
+ "<rootDir>/build"
125
+ ],
126
+ "transform": {},
127
+ "testEnvironment": "jest-fixed-jsdom",
128
+ "testEnvironmentOptions": {
129
+ "resources": "usable",
130
+ "runScripts": "dangerously"
131
+ },
132
+ "globals": {
133
+ "window": {}
134
+ },
135
+ "modulePaths": [
136
+ "<rootDir>"
137
+ ],
138
+ "moduleNameMapper": {
139
+ "\\.(eot|otf|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/config/jest/fileMock.js",
140
+ "\\.(jpg|jpeg|png|gif|webp)$": "<rootDir>/config/jest/imgMock.js",
141
+ "\\.svg$": "<rootDir>/config/jest/svgMock.js",
142
+ "\\.css$": "identity-obj-proxy"
143
+ },
144
+ "setupFilesAfterEnv": [
145
+ "<rootDir>/config/jest/mocks.js"
146
+ ]
147
+ }
148
+ }
@@ -0,0 +1,14 @@
1
+ let servers = {
2
+ meta: "https://explore.panoramax.fr/api",
3
+ ign: "https://panoramax.ign.fr/api",
4
+ osmfr: "https://panoramax.openstreetmap.fr/api",
5
+ local: "http://localhost:5000/api",
6
+ dev: "https://dev.panoramax.xyz/api",
7
+ cartocite: "https://panoramax.cartocite.fr/api",
8
+ };
9
+ let urlParams = new URLSearchParams(window.location.search);
10
+ let server = servers[urlParams.get("server") || "meta"];
11
+ if(!server) {
12
+ console.error("Unrecognized server: "+urlParams.get("server"));
13
+ server = servers.meta;
14
+ }
@@ -0,0 +1 @@
1
+ {}