qwc2 2025.8.7 → 2025.8.20

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 (111) hide show
  1. package/actions/localConfig.js +1 -1
  2. package/actions/locale.js +1 -6
  3. package/components/LayerInfoWindow.js +1 -1
  4. package/components/MessageBar.js +7 -0
  5. package/components/PluginsContainer.js +3 -2
  6. package/components/ResizeableWindow.js +2 -2
  7. package/components/SearchBox.js +1 -1
  8. package/components/ServiceInfoWindow.js +1 -1
  9. package/components/SideBar.js +2 -2
  10. package/components/StandardApp.js +12 -16
  11. package/components/TaskBar.js +2 -2
  12. package/components/ThemeList.js +1 -1
  13. package/components/map/OlMap.js +2 -2
  14. package/components/map3d/ImportObjects3D.js +1 -1
  15. package/components/map3d/Map3D.js +12 -11
  16. package/components/map3d/MapControls3D.js +2 -2
  17. package/components/map3d/SearchField3D.js +3 -3
  18. package/components/map3d/drawtool/NumericInput3D.js +3 -3
  19. package/components/map3d/style/MapControls3D.css +9 -16
  20. package/components/map3d/utils/MiscUtils3D.js +7 -2
  21. package/components/map3d/utils/OrbitControls3D.js +2 -1
  22. package/components/map3d/utils/Tiles3DStyle.js +4 -4
  23. package/components/style/{TaskBar.css → MessageBar.css} +4 -4
  24. package/components/style/PluginsContainer.css +1 -1
  25. package/components/widgets/TextInput.js +1 -1
  26. package/icons/above_terr.svg +81 -0
  27. package/icons/above_zero.svg +80 -0
  28. package/package.json +3 -2
  29. package/plugins/API.js +3 -3
  30. package/plugins/AttributeTable.js +1 -1
  31. package/plugins/BottomBar.js +1 -1
  32. package/plugins/HeightProfile.js +10 -7
  33. package/plugins/Map.js +4 -3
  34. package/plugins/MapCompare.js +1 -1
  35. package/plugins/MapCopyright.js +2 -2
  36. package/plugins/MapExport.js +1 -1
  37. package/plugins/Reports.js +1 -1
  38. package/plugins/Routing.js +1 -1
  39. package/plugins/TopBar.js +1 -1
  40. package/plugins/TourGuide.js +3 -1
  41. package/plugins/View3D.js +26 -20
  42. package/plugins/map/LocateSupport.js +3 -5
  43. package/plugins/map/style/LocateSupport.css +33 -0
  44. package/{components/map3d/Settings3D.js → plugins/map3d/BackgroundSwitcher3D.js} +3 -1
  45. package/{components → plugins}/map3d/BottomBar3D.js +3 -1
  46. package/plugins/map3d/Compare3D.js +14 -0
  47. package/{components → plugins}/map3d/Draw3D.js +3 -1
  48. package/{components → plugins}/map3d/ExportObjects3D.js +12 -11
  49. package/plugins/map3d/HideObjects3D.js +18 -0
  50. package/{components → plugins}/map3d/Identify3D.js +10 -6
  51. package/plugins/map3d/LayerTree3D.js +9 -0
  52. package/plugins/map3d/MapCopyright3D.js +11 -0
  53. package/{components → plugins}/map3d/MapExport3D.js +3 -1
  54. package/plugins/map3d/MapLight3D.js +11 -0
  55. package/{components → plugins}/map3d/Measure3D.js +3 -1
  56. package/{components → plugins}/map3d/OverviewMap3D.js +3 -3
  57. package/plugins/map3d/Settings3D.js +9 -0
  58. package/plugins/map3d/TopBar3D.js +15 -0
  59. package/plugins/style/HeightProfile.css +10 -0
  60. package/plugins/style/MapCopyright.css +3 -3
  61. package/plugins/style/View3D.css +0 -4
  62. package/reducers/localConfig.js +1 -1
  63. package/reducers/windows.js +1 -1
  64. package/scripts/gen-plugin-docs.js +2 -2
  65. package/selectors/searchproviders.js +3 -7
  66. package/static/translations/bg-BG.json +3 -0
  67. package/static/translations/ca-ES.json +3 -0
  68. package/static/translations/cs-CZ.json +3 -0
  69. package/static/translations/de-CH.json +4 -1
  70. package/static/translations/de-DE.json +4 -1
  71. package/static/translations/en-US.json +4 -1
  72. package/static/translations/es-ES.json +3 -0
  73. package/static/translations/fi-FI.json +3 -0
  74. package/static/translations/fr-FR.json +4 -1
  75. package/static/translations/hu-HU.json +3 -0
  76. package/static/translations/it-IT.json +4 -1
  77. package/static/translations/ja-JP.json +3 -0
  78. package/static/translations/nl-NL.json +3 -0
  79. package/static/translations/no-NO.json +3 -0
  80. package/static/translations/pl-PL.json +3 -0
  81. package/static/translations/pt-BR.json +3 -0
  82. package/static/translations/pt-PT.json +3 -0
  83. package/static/translations/ro-RO.json +3 -0
  84. package/static/translations/ru-RU.json +3 -0
  85. package/static/translations/sv-SE.json +3 -0
  86. package/static/translations/tr-TR.json +3 -0
  87. package/static/translations/tsconfig.json +5 -1
  88. package/static/translations/uk-UA.json +747 -0
  89. package/utils/LayerUtils.js +1 -1
  90. package/utils/LocaleUtils.js +6 -1
  91. package/utils/PluginStore.js +1 -0
  92. package/utils/SearchProviders.js +8 -3
  93. package/utils/ThemeUtils.js +2 -2
  94. package/components/map/OlLocate.css +0 -56
  95. package/components/map/OlLocate.js +0 -17
  96. package/components/map3d/Compare3D.js +0 -12
  97. package/components/map3d/HideObjects3D.js +0 -14
  98. package/components/map3d/LayerTree3D.js +0 -7
  99. package/components/map3d/Map3DLight.js +0 -11
  100. package/components/map3d/TopBar3D.js +0 -7
  101. package/components/map3d/img/viewcone.svg +0 -124
  102. package/components/map3d/models/arrow.glb +0 -0
  103. package/components/map3d/models/pin.glb +0 -0
  104. package/utils/img/person.png +0 -0
  105. /package/{components → plugins}/map3d/style/BottomBar3D.css +0 -0
  106. /package/{components → plugins}/map3d/style/Compare3D.css +0 -0
  107. /package/{components → plugins}/map3d/style/HideObjects3D.css +0 -0
  108. /package/{components → plugins}/map3d/style/LayerTree3D.css +0 -0
  109. /package/{components/map3d/style/Map3DLight.css → plugins/map3d/style/MapLight3D.css} +0 -0
  110. /package/{components → plugins}/map3d/style/OverviewMap3D.css +0 -0
  111. /package/{components → plugins}/map3d/style/Settings3D.css +0 -0
@@ -1,124 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
- <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
-
4
- <svg
5
- width="32"
6
- height="32"
7
- viewBox="0 0 8.4666665 8.4666663"
8
- version="1.1"
9
- id="svg1"
10
- inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
11
- sodipodi:docname="viewcone.svg"
12
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
13
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
14
- xmlns:xlink="http://www.w3.org/1999/xlink"
15
- xmlns="http://www.w3.org/2000/svg"
16
- xmlns:svg="http://www.w3.org/2000/svg">
17
- <sodipodi:namedview
18
- id="namedview1"
19
- pagecolor="#ffffff"
20
- bordercolor="#666666"
21
- borderopacity="1.0"
22
- inkscape:showpageshadow="2"
23
- inkscape:pageopacity="0.0"
24
- inkscape:pagecheckerboard="0"
25
- inkscape:deskcolor="#d1d1d1"
26
- inkscape:document-units="mm"
27
- showgrid="true"
28
- inkscape:zoom="26.084066"
29
- inkscape:cx="14.089061"
30
- inkscape:cy="15.929265"
31
- inkscape:window-width="1920"
32
- inkscape:window-height="1172"
33
- inkscape:window-x="0"
34
- inkscape:window-y="0"
35
- inkscape:window-maximized="1"
36
- inkscape:current-layer="layer1">
37
- <inkscape:grid
38
- id="grid1"
39
- units="px"
40
- originx="0"
41
- originy="0"
42
- spacingx="0.26458333"
43
- spacingy="0.26458334"
44
- empcolor="#0099e5"
45
- empopacity="0.30196078"
46
- color="#0099e5"
47
- opacity="0.14901961"
48
- empspacing="5"
49
- dotted="false"
50
- gridanglex="30"
51
- gridanglez="30"
52
- visible="true" />
53
- </sodipodi:namedview>
54
- <defs
55
- id="defs1">
56
- <linearGradient
57
- id="linearGradient3"
58
- inkscape:collect="always">
59
- <stop
60
- style="stop-color:#ff0000;stop-opacity:1;"
61
- offset="0"
62
- id="stop3" />
63
- <stop
64
- style="stop-color:#000000;stop-opacity:0;"
65
- offset="1"
66
- id="stop4" />
67
- </linearGradient>
68
- <linearGradient
69
- id="linearGradient1"
70
- inkscape:collect="always">
71
- <stop
72
- style="stop-color:#ff0000;stop-opacity:1;"
73
- offset="0"
74
- id="stop1" />
75
- <stop
76
- style="stop-color:#000000;stop-opacity:0;"
77
- offset="1"
78
- id="stop2" />
79
- </linearGradient>
80
- <linearGradient
81
- inkscape:collect="always"
82
- xlink:href="#linearGradient1"
83
- id="linearGradient2"
84
- x1="179.91667"
85
- y1="162.89131"
86
- x2="179.91672"
87
- y2="141.63925"
88
- gradientUnits="userSpaceOnUse"
89
- gradientTransform="matrix(0.06962172,0,0,0.12996055,47.319103,94.305006)" />
90
- <linearGradient
91
- inkscape:collect="always"
92
- xlink:href="#linearGradient3"
93
- id="linearGradient4"
94
- x1="59.845215"
95
- y1="116.68127"
96
- x2="59.845215"
97
- y2="112.71252"
98
- gradientUnits="userSpaceOnUse"
99
- gradientTransform="translate(3.8828532e-7)" />
100
- </defs>
101
- <g
102
- inkscape:label="Layer 1"
103
- inkscape:groupmode="layer"
104
- id="layer1"
105
- transform="translate(-55.611881,-111.12502)">
106
- <path
107
- style="opacity:0.65;fill:url(#linearGradient2);fill-opacity:1;stroke:none;stroke-width:0.0629188;stroke-linecap:round;stroke-opacity:1"
108
- id="path1"
109
- sodipodi:type="arc"
110
- sodipodi:cx="59.845215"
111
- sodipodi:cy="119.06251"
112
- sodipodi:rx="5.5262241"
113
- sodipodi:ry="10.315619"
114
- sodipodi:start="3.8397244"
115
- sodipodi:end="5.5850536"
116
- sodipodi:arc-type="slice"
117
- d="m 55.611882,112.43175 a 5.5262241,10.315619 0 0 1 4.233333,-3.68486 5.5262241,10.315619 0 0 1 4.233333,3.68487 l -4.233333,6.63075 z" />
118
- <path
119
- style="fill:none;stroke:url(#linearGradient4);stroke-width:0.3;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none"
120
- d="m 55.611881,112.71252 4.233333,6.61458 4.233333,-6.61459"
121
- id="path2"
122
- sodipodi:nodetypes="ccc" />
123
- </g>
124
- </svg>
Binary file
Binary file
Binary file