qwc2 2025.3.31

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 (528) hide show
  1. package/LICENSE +28 -0
  2. package/README.md +68 -0
  3. package/actions/display.js +7 -0
  4. package/actions/editing.js +7 -0
  5. package/actions/layerinfo.js +7 -0
  6. package/actions/layers.js +8 -0
  7. package/actions/localConfig.js +7 -0
  8. package/actions/locale.js +10 -0
  9. package/actions/locate.js +8 -0
  10. package/actions/logging.js +7 -0
  11. package/actions/map.js +15 -0
  12. package/actions/measurement.js +8 -0
  13. package/actions/processNotifications.js +7 -0
  14. package/actions/redlining.js +7 -0
  15. package/actions/redliningPick.js +7 -0
  16. package/actions/serviceinfo.js +7 -0
  17. package/actions/task.js +9 -0
  18. package/actions/theme.js +24 -0
  19. package/actions/windows.js +10 -0
  20. package/components/AppMenu.js +8 -0
  21. package/components/AttributeForm.js +34 -0
  22. package/components/AutoEditForm.js +8 -0
  23. package/components/CoordinateDisplayer.js +7 -0
  24. package/components/EditComboField.js +10 -0
  25. package/components/EditUploadField.js +8 -0
  26. package/components/FullscreenSwitcher.js +8 -0
  27. package/components/Icon.js +7 -0
  28. package/components/IdentifyViewer.js +16 -0
  29. package/components/ImportLayer.js +25 -0
  30. package/components/LayerInfoWindow.js +7 -0
  31. package/components/LinkFeatureForm.js +10 -0
  32. package/components/MapSelection.js +13 -0
  33. package/components/NumericInputWindow.js +7 -0
  34. package/components/PickFeature.js +7 -0
  35. package/components/PluginsContainer.js +8 -0
  36. package/components/PrintSelection.js +54 -0
  37. package/components/QtDesignerForm.js +30 -0
  38. package/components/ResizeableWindow.js +12 -0
  39. package/components/SearchBox.js +26 -0
  40. package/components/ServiceInfoWindow.js +7 -0
  41. package/components/SideBar.js +9 -0
  42. package/components/StandardApp.js +35 -0
  43. package/components/Swipeable.js +1 -0
  44. package/components/TaskBar.js +7 -0
  45. package/components/ThemeLayersListWindow.js +9 -0
  46. package/components/ThemeList.js +12 -0
  47. package/components/Toolbar.js +7 -0
  48. package/components/WindowManager.js +7 -0
  49. package/components/map/OlLayer.js +12 -0
  50. package/components/map/OlLocate.css +56 -0
  51. package/components/map/OlLocate.js +17 -0
  52. package/components/map/OlMap.js +11 -0
  53. package/components/map/layers/BingLayer.js +8 -0
  54. package/components/map/layers/GoogleLayer.js +27 -0
  55. package/components/map/layers/GraticuleLayer.js +8 -0
  56. package/components/map/layers/ImageLayer.js +8 -0
  57. package/components/map/layers/MVTLayer.js +7 -0
  58. package/components/map/layers/OSMLayer.js +8 -0
  59. package/components/map/layers/OverlayLayer.js +10 -0
  60. package/components/map/layers/VectorLayer.js +14 -0
  61. package/components/map/layers/WFSLayer.js +11 -0
  62. package/components/map/layers/WMSLayer.js +11 -0
  63. package/components/map/layers/WMTSLayer.js +9 -0
  64. package/components/map/layers/XYZLayer.js +7 -0
  65. package/components/map/layers/index.js +8 -0
  66. package/components/map3d/BottomBar3D.js +7 -0
  67. package/components/map3d/Compare3D.js +12 -0
  68. package/components/map3d/Draw3D.js +10 -0
  69. package/components/map3d/ExportObjects3D.js +17 -0
  70. package/components/map3d/HeightProfile3D.js +8 -0
  71. package/components/map3d/HideObjects3D.js +12 -0
  72. package/components/map3d/Identify3D.js +13 -0
  73. package/components/map3d/LayerTree3D.js +8 -0
  74. package/components/map3d/Map3D.js +29 -0
  75. package/components/map3d/Map3DLight.js +10 -0
  76. package/components/map3d/MapControls3D.js +20 -0
  77. package/components/map3d/MapExport3D.js +11 -0
  78. package/components/map3d/Measure3D.js +23 -0
  79. package/components/map3d/OverviewMap3D.js +9 -0
  80. package/components/map3d/SearchField3D.js +16 -0
  81. package/components/map3d/TopBar3D.js +7 -0
  82. package/components/map3d/View3DSwitcher.js +7 -0
  83. package/components/map3d/drawtool/CreateTool3D.js +9 -0
  84. package/components/map3d/drawtool/EditTool3D.js +9 -0
  85. package/components/map3d/drawtool/NumericInput3D.js +7 -0
  86. package/components/map3d/img/viewcone.svg +124 -0
  87. package/components/map3d/layers/VectorLayer3D.js +7 -0
  88. package/components/map3d/layers/WFSLayer3D.js +8 -0
  89. package/components/map3d/layers/WMSLayer3D.js +7 -0
  90. package/components/map3d/layers/WMTSLayer3D.js +9 -0
  91. package/components/map3d/layers/index.js +8 -0
  92. package/components/map3d/models/arrow.glb +0 -0
  93. package/components/map3d/models/pin.glb +0 -0
  94. package/components/map3d/slices/map3d.js +1 -0
  95. package/components/map3d/style/BottomBar3D.css +67 -0
  96. package/components/map3d/style/Compare3D.css +57 -0
  97. package/components/map3d/style/Draw3D.css +7 -0
  98. package/components/map3d/style/HideObjects3D.css +29 -0
  99. package/components/map3d/style/LayerTree3D.css +126 -0
  100. package/components/map3d/style/Map3D.css +42 -0
  101. package/components/map3d/style/Map3DLight.css +72 -0
  102. package/components/map3d/style/MapControls3D.css +56 -0
  103. package/components/map3d/style/MapExport3D.css +25 -0
  104. package/components/map3d/style/OverviewMap3D.css +37 -0
  105. package/components/map3d/style/SearchField3D.css +7 -0
  106. package/components/map3d/style/View3DSwitcher.css +27 -0
  107. package/components/map3d/utils/Tiles3DStyle.js +1 -0
  108. package/components/share/ShareLink.js +7 -0
  109. package/components/share/ShareQRCode.js +8 -0
  110. package/components/share/ShareSocials.js +9 -0
  111. package/components/share/style/ShareLink.css +13 -0
  112. package/components/share/style/ShareSocials.css +9 -0
  113. package/components/style/App.css +229 -0
  114. package/components/style/AppMenu.css +162 -0
  115. package/components/style/AttributeForm.css +57 -0
  116. package/components/style/AutoEditForm.css +64 -0
  117. package/components/style/DefaultColorScheme.css +60 -0
  118. package/components/style/EditUploadField.css +103 -0
  119. package/components/style/FullscreenSwitcher.css +25 -0
  120. package/components/style/Icon.css +26 -0
  121. package/components/style/IdentifyViewer.css +249 -0
  122. package/components/style/ImportLayer.css +28 -0
  123. package/components/style/LayerInfoWindow.css +46 -0
  124. package/components/style/LinkFeatureForm.css +48 -0
  125. package/components/style/NumericInputWindow.css +11 -0
  126. package/components/style/PickFeature.css +25 -0
  127. package/components/style/PluginsContainer.css +4 -0
  128. package/components/style/QtDesignerForm.css +225 -0
  129. package/components/style/ResizeableWindow.css +178 -0
  130. package/components/style/SearchBox.css +159 -0
  131. package/components/style/ServiceInfoWindow.css +34 -0
  132. package/components/style/SideBar.css +100 -0
  133. package/components/style/TaskBar.css +35 -0
  134. package/components/style/ThemeLayersListWindow.css +47 -0
  135. package/components/style/ThemeList.css +200 -0
  136. package/components/style/Toolbar.css +20 -0
  137. package/components/style/WindowManager.css +50 -0
  138. package/components/timeline/FixedTimeline.js +10 -0
  139. package/components/timeline/InfiniteTimeline.js +13 -0
  140. package/components/timeline/TimelineFeaturesSlider.js +10 -0
  141. package/components/timeline/style/FixedTimeline.css +76 -0
  142. package/components/timeline/style/InfiniteTimeline.css +94 -0
  143. package/components/timeline/style/TimelineFeaturesSlider.css +131 -0
  144. package/components/widgets/AccordeonWidget.js +7 -0
  145. package/components/widgets/ButtonBar.js +7 -0
  146. package/components/widgets/ColorButton.js +8 -0
  147. package/components/widgets/ComboBox.js +7 -0
  148. package/components/widgets/CopyButton.js +7 -0
  149. package/components/widgets/DateTimeInput.js +8 -0
  150. package/components/widgets/EditableSelect.js +8 -0
  151. package/components/widgets/FileSelector.js +9 -0
  152. package/components/widgets/Input.js +7 -0
  153. package/components/widgets/InputContainer.js +7 -0
  154. package/components/widgets/LayerCatalogWidget.js +3 -0
  155. package/components/widgets/MenuButton.js +1 -0
  156. package/components/widgets/ModalDialog.js +7 -0
  157. package/components/widgets/NavBar.js +7 -0
  158. package/components/widgets/NumberInput.js +9 -0
  159. package/components/widgets/PopupMenu.js +1 -0
  160. package/components/widgets/Primitives.js +7 -0
  161. package/components/widgets/ReCaptchaWidget.js +1 -0
  162. package/components/widgets/SearchWidget.js +7 -0
  163. package/components/widgets/Spinner.js +6 -0
  164. package/components/widgets/SuggestionInput.js +7 -0
  165. package/components/widgets/TextInput.js +7 -0
  166. package/components/widgets/ToggleSwitch.js +7 -0
  167. package/components/widgets/VectorLayerPicker.js +8 -0
  168. package/components/widgets/style/AccordeonWidget.css +22 -0
  169. package/components/widgets/style/ButtonBar.css +88 -0
  170. package/components/widgets/style/ColorButton.css +88 -0
  171. package/components/widgets/style/ComboBox.css +83 -0
  172. package/components/widgets/style/CopyButton.css +21 -0
  173. package/components/widgets/style/EditableSelect.css +47 -0
  174. package/components/widgets/style/FileSelector.css +14 -0
  175. package/components/widgets/style/InputContainer.css +34 -0
  176. package/components/widgets/style/LayerCatalogWidget.css +59 -0
  177. package/components/widgets/style/MenuButton.css +122 -0
  178. package/components/widgets/style/ModalDialog.css +50 -0
  179. package/components/widgets/style/NavBar.css +12 -0
  180. package/components/widgets/style/NumberInput.css +76 -0
  181. package/components/widgets/style/SearchWidget.css +43 -0
  182. package/components/widgets/style/Spinner.css +32 -0
  183. package/components/widgets/style/SuggestionInput.css +8 -0
  184. package/components/widgets/style/TextInput.css +94 -0
  185. package/components/widgets/style/ToggleSwitch.css +61 -0
  186. package/components/widgets/style/VectorLayerPicker.css +3 -0
  187. package/icons/2d.svg +70 -0
  188. package/icons/3d.svg +70 -0
  189. package/icons/3d2d.svg +92 -0
  190. package/icons/after.svg +76 -0
  191. package/icons/arrow-down.svg +60 -0
  192. package/icons/arrow-up.svg +60 -0
  193. package/icons/before.svg +76 -0
  194. package/icons/bglayer.svg +71 -0
  195. package/icons/bookmark.svg +170 -0
  196. package/icons/box.svg +63 -0
  197. package/icons/buffer.svg +67 -0
  198. package/icons/camera.svg +118 -0
  199. package/icons/catalog.svg +62 -0
  200. package/icons/checked.svg +80 -0
  201. package/icons/chevron-down.svg +60 -0
  202. package/icons/chevron-left.svg +59 -0
  203. package/icons/chevron-right.svg +60 -0
  204. package/icons/chevron-up.svg +60 -0
  205. package/icons/circle.svg +70 -0
  206. package/icons/clear.svg +62 -0
  207. package/icons/clock.svg +71 -0
  208. package/icons/cog.svg +60 -0
  209. package/icons/collapse.svg +73 -0
  210. package/icons/compare.svg +72 -0
  211. package/icons/cone.svg +58 -0
  212. package/icons/confirm.svg +62 -0
  213. package/icons/copy.svg +60 -0
  214. package/icons/cuboid.svg +58 -0
  215. package/icons/cyclomedia.svg +47 -0
  216. package/icons/cylinder.svg +58 -0
  217. package/icons/dataimport.svg +116 -0
  218. package/icons/detach.svg +79 -0
  219. package/icons/dock.svg +82 -0
  220. package/icons/dock_bottom.svg +82 -0
  221. package/icons/dock_left.svg +84 -0
  222. package/icons/dock_right.svg +84 -0
  223. package/icons/dock_top.svg +84 -0
  224. package/icons/draw.svg +78 -0
  225. package/icons/editdraw.svg +84 -0
  226. package/icons/edited.svg +78 -0
  227. package/icons/editing.svg +118 -0
  228. package/icons/ellipse.svg +72 -0
  229. package/icons/embed.svg +88 -0
  230. package/icons/expand.svg +73 -0
  231. package/icons/export.svg +126 -0
  232. package/icons/eye.svg +127 -0
  233. package/icons/featureform.svg +115 -0
  234. package/icons/fill.svg +62 -0
  235. package/icons/filter.svg +69 -0
  236. package/icons/folder-open.svg +60 -0
  237. package/icons/freehand.svg +82 -0
  238. package/icons/group.svg +76 -0
  239. package/icons/home.svg +60 -0
  240. package/icons/identify_radius.svg +71 -0
  241. package/icons/identify_region.svg +71 -0
  242. package/icons/import.svg +62 -0
  243. package/icons/info-sign.svg +60 -0
  244. package/icons/info.svg +80 -0
  245. package/icons/layers.svg +71 -0
  246. package/icons/light.svg +77 -0
  247. package/icons/line.svg +61 -0
  248. package/icons/line_buffer.svg +65 -0
  249. package/icons/link.svg +75 -0
  250. package/icons/list-alt.svg +111 -0
  251. package/icons/lock.svg +54 -0
  252. package/icons/login.svg +56 -0
  253. package/icons/logout.svg +56 -0
  254. package/icons/map3d.svg +51 -0
  255. package/icons/maximize.svg +84 -0
  256. package/icons/measure.svg +82 -0
  257. package/icons/measure_line.svg +87 -0
  258. package/icons/measure_polygon.svg +88 -0
  259. package/icons/menu-hamburger.svg +60 -0
  260. package/icons/minimize.svg +76 -0
  261. package/icons/minus-sign.svg +60 -0
  262. package/icons/minus.svg +61 -0
  263. package/icons/nav-end.svg +74 -0
  264. package/icons/nav-left.svg +74 -0
  265. package/icons/nav-right.svg +74 -0
  266. package/icons/nav-start.svg +73 -0
  267. package/icons/new.svg +84 -0
  268. package/icons/nodetool.svg +68 -0
  269. package/icons/numericinput.svg +86 -0
  270. package/icons/ok.svg +60 -0
  271. package/icons/open.svg +79 -0
  272. package/icons/open_link.svg +74 -0
  273. package/icons/paint.svg +75 -0
  274. package/icons/pen.svg +41 -0
  275. package/icons/person.svg +44 -0
  276. package/icons/pick.svg +67 -0
  277. package/icons/pick_point.svg +74 -0
  278. package/icons/pick_region.svg +71 -0
  279. package/icons/plus.svg +60 -0
  280. package/icons/point.svg +67 -0
  281. package/icons/point_buffer.svg +74 -0
  282. package/icons/polygon.svg +61 -0
  283. package/icons/print.svg +60 -0
  284. package/icons/pyramid.svg +58 -0
  285. package/icons/radio_checked.svg +78 -0
  286. package/icons/radio_tristate.svg +75 -0
  287. package/icons/radio_unchecked.svg +72 -0
  288. package/icons/rasterexport.svg +124 -0
  289. package/icons/rect.svg +63 -0
  290. package/icons/refresh.svg +44 -0
  291. package/icons/remove.svg +60 -0
  292. package/icons/report.svg +84 -0
  293. package/icons/routing-bicycle.svg +40 -0
  294. package/icons/routing-bus.svg +40 -0
  295. package/icons/routing-cablecar.svg +40 -0
  296. package/icons/routing-car.svg +40 -0
  297. package/icons/routing-ship.svg +40 -0
  298. package/icons/routing-train.svg +40 -0
  299. package/icons/routing-tram.svg +40 -0
  300. package/icons/routing-truck.svg +40 -0
  301. package/icons/routing-walking.svg +40 -0
  302. package/icons/routing.svg +68 -0
  303. package/icons/save.svg +190 -0
  304. package/icons/scale.svg +62 -0
  305. package/icons/screenshot.svg +60 -0
  306. package/icons/search.svg +60 -0
  307. package/icons/selectbox.svg +79 -0
  308. package/icons/share.svg +64 -0
  309. package/icons/snap_edge.svg +79 -0
  310. package/icons/snap_vertex.svg +79 -0
  311. package/icons/sphere.svg +58 -0
  312. package/icons/square.svg +68 -0
  313. package/icons/sync.svg +72 -0
  314. package/icons/text.svg +68 -0
  315. package/icons/themes.svg +81 -0
  316. package/icons/tilt-down.svg +67 -0
  317. package/icons/tilt-left.svg +48 -0
  318. package/icons/tilt-right.svg +48 -0
  319. package/icons/tilt-up.svg +67 -0
  320. package/icons/today.svg +45 -0
  321. package/icons/tools.svg +77 -0
  322. package/icons/transformtool.svg +74 -0
  323. package/icons/transparency.svg +132 -0
  324. package/icons/trash.svg +60 -0
  325. package/icons/tree_minus.svg +81 -0
  326. package/icons/tree_plus.svg +81 -0
  327. package/icons/triangle-down.svg +59 -0
  328. package/icons/triangle-left.svg +60 -0
  329. package/icons/triangle-right.svg +60 -0
  330. package/icons/triangle-up.svg +59 -0
  331. package/icons/tristate.svg +79 -0
  332. package/icons/unchecked.svg +74 -0
  333. package/icons/undock.svg +82 -0
  334. package/icons/undock_bottom.svg +82 -0
  335. package/icons/undock_left.svg +82 -0
  336. package/icons/undock_right.svg +84 -0
  337. package/icons/undock_top.svg +84 -0
  338. package/icons/unmaximize.svg +84 -0
  339. package/icons/unminimize.svg +76 -0
  340. package/icons/up-down-arrow.svg +66 -0
  341. package/icons/warning.svg +72 -0
  342. package/icons/wedge.svg +58 -0
  343. package/icons/zoom.svg +60 -0
  344. package/icons/zoomin.svg +71 -0
  345. package/icons/zoomout.svg +80 -0
  346. package/libs/openlayers.js +11 -0
  347. package/package.json +135 -0
  348. package/plugins/API.js +114 -0
  349. package/plugins/AttributeTable.js +25 -0
  350. package/plugins/Authentication.js +13 -0
  351. package/plugins/BackgroundSwitcher.js +10 -0
  352. package/plugins/Bookmark.js +13 -0
  353. package/plugins/BottomBar.js +10 -0
  354. package/plugins/CookiePopup.js +9 -0
  355. package/plugins/Cyclomedia.js +11 -0
  356. package/plugins/Editing.js +21 -0
  357. package/plugins/FeatureForm.js +21 -0
  358. package/plugins/FeatureSearch.js +11 -0
  359. package/plugins/GeometryDigitizer.js +43 -0
  360. package/plugins/HeightProfile.js +26 -0
  361. package/plugins/Help.js +11 -0
  362. package/plugins/HomeButton.js +9 -0
  363. package/plugins/Identify.js +18 -0
  364. package/plugins/LayerCatalog.js +45 -0
  365. package/plugins/LayerTree.js +15 -0
  366. package/plugins/LocateButton.js +10 -0
  367. package/plugins/Map.js +22 -0
  368. package/plugins/MapCompare.js +11 -0
  369. package/plugins/MapCopyright.js +11 -0
  370. package/plugins/MapExport.js +23 -0
  371. package/plugins/MapFilter.js +20 -0
  372. package/plugins/MapInfoTooltip.js +32 -0
  373. package/plugins/MapLegend.js +14 -0
  374. package/plugins/MapTip.js +15 -0
  375. package/plugins/Measure.js +10 -0
  376. package/plugins/NewsPopup.js +12 -0
  377. package/plugins/Panoramax.js +10 -0
  378. package/plugins/Portal.js +10 -0
  379. package/plugins/Print.js +22 -0
  380. package/plugins/ProcessNotifications.js +11 -0
  381. package/plugins/Redlining.js +12 -0
  382. package/plugins/Reports.js +15 -0
  383. package/plugins/Routing.js +23 -0
  384. package/plugins/ScratchDrawing.js +15 -0
  385. package/plugins/Settings.js +12 -0
  386. package/plugins/Share.js +11 -0
  387. package/plugins/StartupMarker.js +12 -0
  388. package/plugins/TaskButton.js +9 -0
  389. package/plugins/ThemeSwitcher.js +10 -0
  390. package/plugins/TimeManager.js +21 -0
  391. package/plugins/TopBar.js +13 -0
  392. package/plugins/ValueTool.js +11 -0
  393. package/plugins/View3D.js +34 -0
  394. package/plugins/ZoomButtons.js +11 -0
  395. package/plugins/map/EditingSupport.js +13 -0
  396. package/plugins/map/LocateSupport.js +14 -0
  397. package/plugins/map/MeasurementSupport.js +15 -0
  398. package/plugins/map/OverviewSupport.js +14 -0
  399. package/plugins/map/RedliningPickSupport.js +12 -0
  400. package/plugins/map/RedliningSupport.js +28 -0
  401. package/plugins/map/ScaleBarSupport.js +10 -0
  402. package/plugins/map/SnapInteraction.js +1 -0
  403. package/plugins/map/SnapSupport.js +7 -0
  404. package/plugins/map/SnappingSupport.js +23 -0
  405. package/plugins/map/style/OverviewSupport.css +42 -0
  406. package/plugins/map/style/ScaleBarSupport.css +18 -0
  407. package/plugins/map/style/SnappingSupport.css +33 -0
  408. package/plugins/redlining/RedliningBufferSupport.js +8 -0
  409. package/plugins/style/AttributeTable.css +220 -0
  410. package/plugins/style/Authentication.css +16 -0
  411. package/plugins/style/BackgroundSwitcher.css +99 -0
  412. package/plugins/style/Bookmark.css +62 -0
  413. package/plugins/style/BottomBar.css +53 -0
  414. package/plugins/style/Buttons.css +68 -0
  415. package/plugins/style/CookiePopup.css +24 -0
  416. package/plugins/style/Cyclomedia.css +66 -0
  417. package/plugins/style/Editing.css +40 -0
  418. package/plugins/style/FeatureForm.css +21 -0
  419. package/plugins/style/FeatureSearch.css +71 -0
  420. package/plugins/style/GeometryDigitizer.css +28 -0
  421. package/plugins/style/HeightProfile.css +26 -0
  422. package/plugins/style/Identify.css +4 -0
  423. package/plugins/style/LayerCatalog.css +8 -0
  424. package/plugins/style/LayerTree.css +316 -0
  425. package/plugins/style/Map.css +43 -0
  426. package/plugins/style/MapCompare.css +27 -0
  427. package/plugins/style/MapCopyright.css +17 -0
  428. package/plugins/style/MapExport.css +55 -0
  429. package/plugins/style/MapFilter.css +101 -0
  430. package/plugins/style/MapInfoTooltip.css +78 -0
  431. package/plugins/style/MapLegend.css +36 -0
  432. package/plugins/style/MapTip.css +22 -0
  433. package/plugins/style/Measure.css +23 -0
  434. package/plugins/style/NewsPopup.css +87 -0
  435. package/plugins/style/Panoramax.css +15 -0
  436. package/plugins/style/Portal.css +115 -0
  437. package/plugins/style/Print.css +116 -0
  438. package/plugins/style/ProcessNotifications.css +55 -0
  439. package/plugins/style/Redlining.css +101 -0
  440. package/plugins/style/Reports.css +11 -0
  441. package/plugins/style/Routing.css +243 -0
  442. package/plugins/style/ScratchDrawing.css +8 -0
  443. package/plugins/style/Settings.css +11 -0
  444. package/plugins/style/Share.css +59 -0
  445. package/plugins/style/ThemeSwitcher.css +7 -0
  446. package/plugins/style/TimeManager.css +91 -0
  447. package/plugins/style/TopBar.css +50 -0
  448. package/plugins/style/ValueTool.css +60 -0
  449. package/reducers/display.js +7 -0
  450. package/reducers/editing.js +8 -0
  451. package/reducers/index.js +7 -0
  452. package/reducers/layerinfo.js +7 -0
  453. package/reducers/layers.js +14 -0
  454. package/reducers/localConfig.js +8 -0
  455. package/reducers/locale.js +8 -0
  456. package/reducers/locate.js +8 -0
  457. package/reducers/map.js +11 -0
  458. package/reducers/measurement.js +8 -0
  459. package/reducers/processNotifications.js +7 -0
  460. package/reducers/redlining.js +7 -0
  461. package/reducers/redliningPick.js +7 -0
  462. package/reducers/serviceinfo.js +7 -0
  463. package/reducers/task.js +7 -0
  464. package/reducers/theme.js +7 -0
  465. package/reducers/windows.js +7 -0
  466. package/scripts/dist.sh +16 -0
  467. package/scripts/gen-plugin-docs.js +9 -0
  468. package/scripts/makeIconkit.js +7 -0
  469. package/scripts/package-commands.bat +8 -0
  470. package/scripts/package-commands.sh +22 -0
  471. package/scripts/themesConfig.js +48 -0
  472. package/scripts/themesConfig.py +659 -0
  473. package/scripts/translateui.sh +51 -0
  474. package/scripts/updateTranslations.js +17 -0
  475. package/scripts/wmts_config_generator.py +169 -0
  476. package/selectors/searchproviders.js +12 -0
  477. package/static/translations/bg-BG.json +709 -0
  478. package/static/translations/ca-ES.json +709 -0
  479. package/static/translations/cs-CZ.json +709 -0
  480. package/static/translations/de-CH.json +709 -0
  481. package/static/translations/de-DE.json +709 -0
  482. package/static/translations/en-US.json +709 -0
  483. package/static/translations/es-ES.json +709 -0
  484. package/static/translations/fi-FI.json +709 -0
  485. package/static/translations/fr-FR.json +709 -0
  486. package/static/translations/hu-HU.json +709 -0
  487. package/static/translations/it-IT.json +709 -0
  488. package/static/translations/ja-JP.json +709 -0
  489. package/static/translations/nl-NL.json +709 -0
  490. package/static/translations/no-NO.json +709 -0
  491. package/static/translations/pl-PL.json +709 -0
  492. package/static/translations/pt-BR.json +709 -0
  493. package/static/translations/pt-PT.json +709 -0
  494. package/static/translations/ro-RO.json +709 -0
  495. package/static/translations/ru-RU.json +709 -0
  496. package/static/translations/sv-SE.json +709 -0
  497. package/static/translations/tr-TR.json +709 -0
  498. package/static/translations/tsconfig.json +606 -0
  499. package/stores/StandardStore.js +8 -0
  500. package/utils/ConfigUtils.js +9 -0
  501. package/utils/CoordinatesUtils.js +29 -0
  502. package/utils/DxfUtils.js +10 -0
  503. package/utils/EditingInterface.js +67 -0
  504. package/utils/EditingUtils.js +11 -0
  505. package/utils/FeatureStyles.js +10 -0
  506. package/utils/IdentifyUtils.js +12 -0
  507. package/utils/ImageEditor.js +15 -0
  508. package/utils/LayerUtils.js +57 -0
  509. package/utils/LocaleUtils.js +9 -0
  510. package/utils/MapUtils.js +66 -0
  511. package/utils/MeasureUtils.js +9 -0
  512. package/utils/MiscUtils.js +15 -0
  513. package/utils/PermaLinkUtils.js +11 -0
  514. package/utils/ResourceRegistry.js +7 -0
  515. package/utils/RoutingInterface.js +12 -0
  516. package/utils/SearchProviders.js +19 -0
  517. package/utils/ServiceLayerUtils.js +20 -0
  518. package/utils/Signal.js +2 -0
  519. package/utils/ThemeUtils.js +12 -0
  520. package/utils/VectorLayerUtils.js +20 -0
  521. package/utils/expr_grammar/README.md +3 -0
  522. package/utils/expr_grammar/grammar.js +3 -0
  523. package/utils/expr_grammar/grammar.ne +118 -0
  524. package/utils/expr_grammar/test.js +13 -0
  525. package/utils/img/README.markers +1 -0
  526. package/utils/img/arrowhead.svg +4 -0
  527. package/utils/img/marker-icon.png +0 -0
  528. package/utils/img/measurehead.svg +4 -0
@@ -0,0 +1,606 @@
1
+ {
2
+ "languages": [
3
+ "bg-BG",
4
+ "de-DE",
5
+ "de-CH",
6
+ "en-US",
7
+ "es-ES",
8
+ "fr-FR",
9
+ "fi-FI",
10
+ "hu-HU",
11
+ "it-IT",
12
+ "ja-JP",
13
+ "nl-NL",
14
+ "pl-PL",
15
+ "pt-BR",
16
+ "pt-PT",
17
+ "ro-RO",
18
+ "ru-RU",
19
+ "sv-SE",
20
+ "tr-TR",
21
+ "cs-CZ",
22
+ "no-NO",
23
+ "ca-ES"
24
+ ],
25
+ "extra_strings": [
26
+ "appmenu.items.AttributeTable",
27
+ "appmenu.items.AuthenticationLogin",
28
+ "appmenu.items.AuthenticationLogout",
29
+ "appmenu.items.Cyclomedia",
30
+ "appmenu.items.Draw3D",
31
+ "appmenu.items.FeatureForm",
32
+ "appmenu.items.FeatureSearch",
33
+ "appmenu.items.GeometryDigitizer",
34
+ "appmenu.items.Help",
35
+ "appmenu.items.IdentifyPoint",
36
+ "appmenu.items.IdentifyRegion",
37
+ "appmenu.items.LayerCatalog",
38
+ "appmenu.items.LayerTree",
39
+ "appmenu.items.Login",
40
+ "appmenu.items.Logout",
41
+ "appmenu.items.MapLegend",
42
+ "appmenu.items.Measure",
43
+ "appmenu.items.Measure3D",
44
+ "appmenu.items.MeasureLineString",
45
+ "appmenu.items.MeasurePolygon",
46
+ "appmenu.items.NewsPopup",
47
+ "appmenu.items.Panoramax",
48
+ "appmenu.items.Portal",
49
+ "appmenu.items.PrintScreen3D",
50
+ "appmenu.items.Redlining",
51
+ "appmenu.items.Routing",
52
+ "appmenu.items.Tools",
53
+ "appmenu.items.Bookmark",
54
+ "appmenu.items.TimeManager",
55
+ "appmenu.items.View3D"
56
+ ],
57
+ "strings": [
58
+ "app.missingbg",
59
+ "app.missinglayers",
60
+ "app.missingpermalink",
61
+ "app.missingprojection",
62
+ "app.missingtheme",
63
+ "appmenu.filter",
64
+ "appmenu.items.Bookmark",
65
+ "appmenu.items.Compare3D",
66
+ "appmenu.items.Editing",
67
+ "appmenu.items.ExportObjects3D",
68
+ "appmenu.items.Help",
69
+ "appmenu.items.HideObjects3D",
70
+ "appmenu.items.LayerTree",
71
+ "appmenu.items.LayerTree3D",
72
+ "appmenu.items.MapExport",
73
+ "appmenu.items.MapExport3D",
74
+ "appmenu.items.MapFilter",
75
+ "appmenu.items.MapLight3D",
76
+ "appmenu.items.Print",
77
+ "appmenu.items.Reports",
78
+ "appmenu.items.Settings",
79
+ "appmenu.items.Share",
80
+ "appmenu.items.ThemeSwitcher",
81
+ "appmenu.menulabel",
82
+ "attribtable.addfeature",
83
+ "attribtable.commit",
84
+ "attribtable.csvexport",
85
+ "attribtable.delete",
86
+ "attribtable.deletefailed",
87
+ "attribtable.deletefeatures",
88
+ "attribtable.deleting",
89
+ "attribtable.discard",
90
+ "attribtable.formeditmode",
91
+ "attribtable.geomnoadd",
92
+ "attribtable.limittoextent",
93
+ "attribtable.loadfailed",
94
+ "attribtable.loading",
95
+ "attribtable.nodelete",
96
+ "attribtable.nogeomnoform",
97
+ "attribtable.pleasereload",
98
+ "attribtable.reload",
99
+ "attribtable.selectlayer",
100
+ "attribtable.title",
101
+ "attribtable.zoomtoselection",
102
+ "bgswitcher.nobg",
103
+ "bookmark.add",
104
+ "bookmark.addfailed",
105
+ "bookmark.description",
106
+ "bookmark.lastUpdate",
107
+ "bookmark.manage",
108
+ "bookmark.nobookmarks",
109
+ "bookmark.notloggedin",
110
+ "bookmark.open",
111
+ "bookmark.openTab",
112
+ "bookmark.remove",
113
+ "bookmark.removefailed",
114
+ "bookmark.savefailed",
115
+ "bookmark.update",
116
+ "bookmark.zoomToExtent",
117
+ "bottombar.mousepos_label",
118
+ "bottombar.scale_label",
119
+ "bottombar.terms_label",
120
+ "bottombar.viewertitle_label",
121
+ "compare3d.clipplane",
122
+ "compare3d.compare_objects",
123
+ "compare3d.toggleall",
124
+ "cookiepopup.accept",
125
+ "cookiepopup.message",
126
+ "copybtn.click_to_copy",
127
+ "copybtn.copied",
128
+ "copybtn.copyfailed",
129
+ "cyclomedia.clickonmap",
130
+ "cyclomedia.initializing",
131
+ "cyclomedia.loaderror",
132
+ "cyclomedia.loading",
133
+ "cyclomedia.login",
134
+ "cyclomedia.scalehint",
135
+ "cyclomedia.title",
136
+ "draw3d.cone",
137
+ "draw3d.cuboid",
138
+ "draw3d.cylinder",
139
+ "draw3d.delete",
140
+ "draw3d.drawings",
141
+ "draw3d.intersect",
142
+ "draw3d.newgroupprompt",
143
+ "draw3d.numericinput",
144
+ "draw3d.pick",
145
+ "draw3d.position",
146
+ "draw3d.pyramid",
147
+ "draw3d.rotate",
148
+ "draw3d.rotation",
149
+ "draw3d.scale",
150
+ "draw3d.sphere",
151
+ "draw3d.subtract",
152
+ "draw3d.thescale",
153
+ "draw3d.translate",
154
+ "draw3d.undoBool",
155
+ "draw3d.union",
156
+ "draw3d.wedge",
157
+ "editing.add",
158
+ "editing.attrtable",
159
+ "editing.canceldelete",
160
+ "editing.clearpicture",
161
+ "editing.commit",
162
+ "editing.commitfailed",
163
+ "editing.contraintviolation",
164
+ "editing.create",
165
+ "editing.delete",
166
+ "editing.discard",
167
+ "editing.draw",
168
+ "editing.feature",
169
+ "editing.geomreadonly",
170
+ "editing.invalidform",
171
+ "editing.maximize",
172
+ "editing.minimize",
173
+ "editing.noeditablelayers",
174
+ "editing.paint",
175
+ "editing.pick",
176
+ "editing.pickdrawfeature",
177
+ "editing.reallydelete",
178
+ "editing.relationcommitfailed",
179
+ "editing.select",
180
+ "editing.takepicture",
181
+ "editing.unsavedchanged",
182
+ "featureform.feature",
183
+ "featureform.noresults",
184
+ "featureform.querying",
185
+ "featureform.title",
186
+ "featuresearch.noresults",
187
+ "featuresearch.query",
188
+ "featuresearch.select",
189
+ "featuresearch.title",
190
+ "fileselector.files",
191
+ "fileselector.placeholder",
192
+ "geomdigitizer.applink",
193
+ "geomdigitizer.bufferlayername",
194
+ "geomdigitizer.chooselink",
195
+ "geomdigitizer.clear",
196
+ "geomdigitizer.identifypick",
197
+ "geomdigitizer.identifypickregion",
198
+ "geomdigitizer.layername",
199
+ "geomdigitizer.line_buffer",
200
+ "geomdigitizer.point_buffer",
201
+ "geomdigitizer.selfinter",
202
+ "geomdigitizer.send",
203
+ "geomdigitizer.wait",
204
+ "heightprofile.asl",
205
+ "heightprofile.distance",
206
+ "heightprofile.drawnodes",
207
+ "heightprofile.error",
208
+ "heightprofile.export",
209
+ "heightprofile.height",
210
+ "heightprofile.loading",
211
+ "heightprofile.loadingimage",
212
+ "heightprofile.print",
213
+ "heightprofile.title",
214
+ "hideobjects3d.clickonmap",
215
+ "hideobjects3d.object",
216
+ "hideobjects3d.restore",
217
+ "hideobjects3d.restoreall",
218
+ "identify.aggregatedreport",
219
+ "identify.clipboard",
220
+ "identify.download",
221
+ "identify.export",
222
+ "identify.featureReport",
223
+ "identify.featurecount",
224
+ "identify.layerall",
225
+ "identify.link",
226
+ "identify.noattributes",
227
+ "identify.noresults",
228
+ "identify.querying",
229
+ "identify.reportfail",
230
+ "identify.selectlayer",
231
+ "identify.title",
232
+ "imageeditor.confirmclose",
233
+ "imageeditor.title",
234
+ "importlayer.addfailed",
235
+ "importlayer.addlayer",
236
+ "importlayer.asgroup",
237
+ "importlayer.connect",
238
+ "importlayer.filter",
239
+ "importlayer.loading",
240
+ "importlayer.localfile",
241
+ "importlayer.nofeatures",
242
+ "importlayer.noresults",
243
+ "importlayer.notgeopdf",
244
+ "importlayer.shpreprojectionerror",
245
+ "importlayer.supportedformats",
246
+ "importlayer.unknownproj",
247
+ "importlayer.url",
248
+ "importlayer.urlplaceholder",
249
+ "infotool.clickhelpPoint",
250
+ "infotool.clickhelpPolygon",
251
+ "infotool.clickhelpRadius",
252
+ "infotool.radius",
253
+ "layercatalog.windowtitle",
254
+ "layerinfo.abstract",
255
+ "layerinfo.attribution",
256
+ "layerinfo.dataUrl",
257
+ "layerinfo.keywords",
258
+ "layerinfo.legend",
259
+ "layerinfo.maxscale",
260
+ "layerinfo.metadataUrl",
261
+ "layerinfo.minscale",
262
+ "layerinfo.title",
263
+ "layertree.compare",
264
+ "layertree.deletealllayers",
265
+ "layertree.importlayer",
266
+ "layertree.maptip",
267
+ "layertree.printlegend",
268
+ "layertree.separator",
269
+ "layertree.separatortooltip",
270
+ "layertree.transparency",
271
+ "layertree.visiblefilter",
272
+ "layertree.zoomtolayer",
273
+ "layertree3d.import",
274
+ "layertree3d.importobjects",
275
+ "layertree3d.layers",
276
+ "layertree3d.objects",
277
+ "layertree3d.supportedformats",
278
+ "layertree3d.zoomtoobject",
279
+ "linkfeatureform.cancel",
280
+ "linkfeatureform.close",
281
+ "linkfeatureform.drawhint",
282
+ "linkfeatureform.pickhint",
283
+ "locate.feetUnit",
284
+ "locate.metersUnit",
285
+ "locate.popup",
286
+ "locate.statustooltip.DISABLED",
287
+ "locate.statustooltip.ENABLED",
288
+ "locate.statustooltip.FOLLOWING",
289
+ "locate.statustooltip.LOCATING",
290
+ "locate.statustooltip.PERMISSION_DENIED",
291
+ "map.loading",
292
+ "map.resetrotation",
293
+ "map3d.syncview",
294
+ "map3d.terrain",
295
+ "map3d.title",
296
+ "mapexport.configuration",
297
+ "mapexport.format",
298
+ "mapexport.resolution",
299
+ "mapexport.scale",
300
+ "mapexport.size",
301
+ "mapexport.submit",
302
+ "mapexport.usersize",
303
+ "mapexport.wait",
304
+ "mapfilter.addcustomfilter",
305
+ "mapfilter.brokenrendering",
306
+ "mapfilter.cancel",
307
+ "mapfilter.geomfilter",
308
+ "mapfilter.hidefiltergeom",
309
+ "mapfilter.invalidfilter",
310
+ "mapfilter.save",
311
+ "mapfilter.select",
312
+ "mapfilter.selectlayer",
313
+ "mapfilter.timefilter",
314
+ "mapfilter.timefrom",
315
+ "mapfilter.timeto",
316
+ "mapinfotooltip.elevation",
317
+ "mapinfotooltip.title",
318
+ "maplegend.bboxdependent",
319
+ "maplegend.onlyvisible",
320
+ "maplegend.scaledependent",
321
+ "maplegend.windowtitle",
322
+ "maplight3d.ambientLightIntensity",
323
+ "maplight3d.animationstep",
324
+ "maplight3d.date",
325
+ "maplight3d.dayspersec",
326
+ "maplight3d.directionalLightIntensity",
327
+ "maplight3d.helpersVisible",
328
+ "maplight3d.minspersec",
329
+ "maplight3d.normalBias",
330
+ "maplight3d.shadowBias",
331
+ "maplight3d.shadowMapSize",
332
+ "maplight3d.shadowType",
333
+ "maplight3d.shadowVolumeFar",
334
+ "maplight3d.shadowVolumeNear",
335
+ "maplight3d.shadowintensity",
336
+ "maplight3d.shadows",
337
+ "maplight3d.showadvanced",
338
+ "maplight3d.time",
339
+ "maplight3d.zFactor",
340
+ "measureComponent.absolute",
341
+ "measureComponent.areaLabel",
342
+ "measureComponent.bearingLabel",
343
+ "measureComponent.ground",
344
+ "measureComponent.imperial",
345
+ "measureComponent.lengthLabel",
346
+ "measureComponent.metric",
347
+ "measureComponent.pointLabel",
348
+ "misc.ctrlclickhint",
349
+ "navbar.perpage",
350
+ "newspopup.dialogclose",
351
+ "newspopup.dontshowagain",
352
+ "newspopup.title",
353
+ "numericinput.angle",
354
+ "numericinput.featureunsupported",
355
+ "numericinput.height",
356
+ "numericinput.nofeature",
357
+ "numericinput.side",
358
+ "numericinput.width",
359
+ "numericinput.windowtitle",
360
+ "panoramax.notfound",
361
+ "panoramax.title",
362
+ "pickfeature.querying",
363
+ "portal.filter",
364
+ "portal.menulabel",
365
+ "print.atlasfeature",
366
+ "print.download",
367
+ "print.download_as_onepdf",
368
+ "print.download_as_onezip",
369
+ "print.download_as_single",
370
+ "print.format",
371
+ "print.grid",
372
+ "print.layout",
373
+ "print.legend",
374
+ "print.maximize",
375
+ "print.minimize",
376
+ "print.nolayouts",
377
+ "print.notheme",
378
+ "print.output",
379
+ "print.overlap",
380
+ "print.pickatlasfeature",
381
+ "print.resolution",
382
+ "print.rotation",
383
+ "print.save",
384
+ "print.scale",
385
+ "print.series",
386
+ "print.submit",
387
+ "print.wait",
388
+ "qtdesignerform.loading",
389
+ "redlining.border",
390
+ "redlining.buffer",
391
+ "redlining.buffercompute",
392
+ "redlining.bufferdistance",
393
+ "redlining.bufferlayer",
394
+ "redlining.bufferlayername",
395
+ "redlining.bufferselectfeature",
396
+ "redlining.circle",
397
+ "redlining.delete",
398
+ "redlining.draw",
399
+ "redlining.edit",
400
+ "redlining.ellipse",
401
+ "redlining.export",
402
+ "redlining.freehand",
403
+ "redlining.label",
404
+ "redlining.layer",
405
+ "redlining.layertitle",
406
+ "redlining.line",
407
+ "redlining.markers",
408
+ "redlining.measurements",
409
+ "redlining.numericinput",
410
+ "redlining.pick",
411
+ "redlining.point",
412
+ "redlining.polygon",
413
+ "redlining.rectangle",
414
+ "redlining.size",
415
+ "redlining.square",
416
+ "redlining.text",
417
+ "redlining.transform",
418
+ "redlining.width",
419
+ "reports.all",
420
+ "reports.download",
421
+ "reports.pick",
422
+ "reports.region",
423
+ "reports.selectlayer",
424
+ "routing.add",
425
+ "routing.addviapoint",
426
+ "routing.arriveat",
427
+ "routing.clear",
428
+ "routing.computefailed",
429
+ "routing.computing",
430
+ "routing.excludepolygons",
431
+ "routing.export",
432
+ "routing.fastest",
433
+ "routing.fromhere",
434
+ "routing.importerror",
435
+ "routing.importhint",
436
+ "routing.importpoints",
437
+ "routing.iso_intervals",
438
+ "routing.iso_mode",
439
+ "routing.iso_mode_distance",
440
+ "routing.iso_mode_time",
441
+ "routing.isocenter",
442
+ "routing.isoextracenter",
443
+ "routing.leaveat",
444
+ "routing.leavenow",
445
+ "routing.maxspeed",
446
+ "routing.method",
447
+ "routing.mode_auto",
448
+ "routing.mode_bicycle",
449
+ "routing.mode_heavyvehicle",
450
+ "routing.mode_transit",
451
+ "routing.mode_walking",
452
+ "routing.optimized_route",
453
+ "routing.reachability",
454
+ "routing.roundtrip",
455
+ "routing.route",
456
+ "routing.shortest",
457
+ "routing.tohere",
458
+ "routing.useferries",
459
+ "routing.usehighways",
460
+ "routing.usetollways",
461
+ "routing.windowtitle",
462
+ "scratchdrawing.finish",
463
+ "search.all",
464
+ "search.circleradius",
465
+ "search.clearfilter",
466
+ "search.existinglayer",
467
+ "search.filter",
468
+ "search.layers",
469
+ "search.limittoarea",
470
+ "search.more",
471
+ "search.nodescription",
472
+ "search.none",
473
+ "search.noresults",
474
+ "search.placeholder",
475
+ "search.places",
476
+ "search.providerselection",
477
+ "search.recent",
478
+ "search.search",
479
+ "search.themelayers",
480
+ "search.themes",
481
+ "search.unknownmore",
482
+ "serviceinfo.abstract",
483
+ "serviceinfo.contactEmail",
484
+ "serviceinfo.contactOrganization",
485
+ "serviceinfo.contactPerson",
486
+ "serviceinfo.contactPhone",
487
+ "serviceinfo.contactPosition",
488
+ "serviceinfo.keywords",
489
+ "serviceinfo.onlineResource",
490
+ "serviceinfo.title",
491
+ "settings.bookmarks",
492
+ "settings.colorscheme",
493
+ "settings.confirmlang",
494
+ "settings.default",
495
+ "settings.defaulttheme",
496
+ "settings.defaultthemefailed",
497
+ "settings.language",
498
+ "settings.systemlang",
499
+ "settings.themes",
500
+ "share.QRCodeLinkTitle",
501
+ "share.directLinkTitle",
502
+ "share.expires",
503
+ "share.norestriction",
504
+ "share.refresh",
505
+ "share.restricttogroup",
506
+ "share.shareTitle",
507
+ "share.showpin",
508
+ "share.socialIntro",
509
+ "snapping.edge",
510
+ "snapping.loading",
511
+ "snapping.snappingenabled",
512
+ "snapping.vertex",
513
+ "themelayerslist.addlayer",
514
+ "themelayerslist.addlayerstotheme",
515
+ "themelayerslist.addselectedlayers",
516
+ "themelayerslist.existinglayers",
517
+ "themeswitcher.addlayerstotheme",
518
+ "themeswitcher.addtotheme",
519
+ "themeswitcher.changedefaulttheme",
520
+ "themeswitcher.confirmswitch",
521
+ "themeswitcher.filter",
522
+ "themeswitcher.match.abstract",
523
+ "themeswitcher.match.keywords",
524
+ "themeswitcher.match.title",
525
+ "themeswitcher.openintab",
526
+ "themeswitcher.restrictedthemeinfo",
527
+ "timemanager.animationinterval",
528
+ "timemanager.classify",
529
+ "timemanager.classifynone",
530
+ "timemanager.displayfeatures",
531
+ "timemanager.displaylayers",
532
+ "timemanager.displayminimal",
533
+ "timemanager.edit",
534
+ "timemanager.endtime",
535
+ "timemanager.filterwarning",
536
+ "timemanager.future",
537
+ "timemanager.group",
538
+ "timemanager.groupnone",
539
+ "timemanager.home",
540
+ "timemanager.loading",
541
+ "timemanager.loop",
542
+ "timemanager.markers",
543
+ "timemanager.notemporaldata",
544
+ "timemanager.now",
545
+ "timemanager.past",
546
+ "timemanager.play",
547
+ "timemanager.playrev",
548
+ "timemanager.rewind",
549
+ "timemanager.starttime",
550
+ "timemanager.stepback",
551
+ "timemanager.stepfwd",
552
+ "timemanager.stepsize",
553
+ "timemanager.stop",
554
+ "timemanager.timeline",
555
+ "timemanager.timeline_fixed",
556
+ "timemanager.timeline_infinite",
557
+ "timemanager.timelinedisplay",
558
+ "timemanager.timelinescale",
559
+ "timemanager.title",
560
+ "timemanager.toggle",
561
+ "timemanager.unit.century",
562
+ "timemanager.unit.days",
563
+ "timemanager.unit.decade",
564
+ "timemanager.unit.hours",
565
+ "timemanager.unit.milliseconds",
566
+ "timemanager.unit.minutes",
567
+ "timemanager.unit.months",
568
+ "timemanager.unit.seconds",
569
+ "timemanager.unit.years",
570
+ "timemanager.zoomin",
571
+ "timemanager.zoomout",
572
+ "tooltip.background",
573
+ "tooltip.fullscreendisable",
574
+ "tooltip.fullscreenenable",
575
+ "tooltip.home",
576
+ "tooltip.zoomin",
577
+ "tooltip.zoomout",
578
+ "valuetool.all",
579
+ "valuetool.allbands",
580
+ "valuetool.alllayers",
581
+ "valuetool.bands",
582
+ "valuetool.graph",
583
+ "valuetool.layer",
584
+ "valuetool.nodata",
585
+ "valuetool.options",
586
+ "valuetool.selectedbands",
587
+ "valuetool.selectedlayers",
588
+ "valuetool.selectlayersbands",
589
+ "valuetool.showbands",
590
+ "valuetool.showlayers",
591
+ "valuetool.table",
592
+ "valuetool.title",
593
+ "valuetool.visiblelayers",
594
+ "vectorlayerpicker.none",
595
+ "vectorlayerpicker.prompt",
596
+ "window.close",
597
+ "window.detach",
598
+ "window.dock",
599
+ "window.embed",
600
+ "window.maximize",
601
+ "window.minimize",
602
+ "window.undock",
603
+ "window.unmaximize",
604
+ "window.unminimize"
605
+ ]
606
+ }
@@ -0,0 +1,8 @@
1
+ function _typeof(o){"@babel/helpers - typeof";return _typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(o){return typeof o}:function(o){return o&&"function"==typeof Symbol&&o.constructor===Symbol&&o!==Symbol.prototype?"symbol":typeof o},_typeof(o)}function ownKeys(e,r){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);r&&(o=o.filter(function(r){return Object.getOwnPropertyDescriptor(e,r).enumerable})),t.push.apply(t,o)}return t}function _objectSpread(e){for(var r=1;r<arguments.length;r++){var t=null!=arguments[r]?arguments[r]:{};r%2?ownKeys(Object(t),!0).forEach(function(r){_defineProperty(e,r,t[r])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):ownKeys(Object(t)).forEach(function(r){Object.defineProperty(e,r,Object.getOwnPropertyDescriptor(t,r))})}return e}function _defineProperty(e,r,t){return(r=_toPropertyKey(r))in e?Object.defineProperty(e,r,{value:t,enumerable:!0,configurable:!0,writable:!0}):e[r]=t,e}function _toPropertyKey(t){var i=_toPrimitive(t,"string");return"symbol"==_typeof(i)?i:i+""}function _toPrimitive(t,r){if("object"!=_typeof(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var i=e.call(t,r||"default");if("object"!=_typeof(i))return i;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===r?String:Number)(t)}/**
2
+ * Copyright 2016 GeoSolutions Sas
3
+ * Copyright 2016-2024 Sourcepole AG
4
+ * All rights reserved.
5
+ *
6
+ * This source code is licensed under the BSD-style license found in the
7
+ * LICENSE file in the root directory of this source tree.
8
+ */import{configureStore}from"@reduxjs/toolkit";import merge from"deepmerge";import{combineReducers}from"redux";import{logger}from"redux-logger";export var createStore=function createStore(reducers){var initialState=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};var actionLogger=arguments.length>2&&arguments[2]!==undefined?arguments[2]:null;var allReducers=combineReducers(reducers);var defaultState=merge(_objectSpread({},allReducers({},{type:null})),initialState.defaultState||{});var searchParams=new URLSearchParams(window.location.search);var enableDevTools=process.env.NODE_ENV!=="production"&&(searchParams.get("debug")||"").toLowerCase()==="true";return configureStore({devTools:enableDevTools,reducer:function reducer(state,action){var newState=_objectSpread({},allReducers(state,action));if(actionLogger){actionLogger(action,newState,state)}return newState},preloadedState:defaultState,middleware:function middleware(getDefaultMiddleware){var middleware=getDefaultMiddleware({serializableCheck:false});if(enableDevTools){middleware.push(logger)}return middleware}})};
@@ -0,0 +1,9 @@
1
+ function ownKeys(e,r){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);r&&(o=o.filter(function(r){return Object.getOwnPropertyDescriptor(e,r).enumerable})),t.push.apply(t,o)}return t}function _objectSpread(e){for(var r=1;r<arguments.length;r++){var t=null!=arguments[r]?arguments[r]:{};r%2?ownKeys(Object(t),!0).forEach(function(r){_defineProperty(e,r,t[r])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):ownKeys(Object(t)).forEach(function(r){Object.defineProperty(e,r,Object.getOwnPropertyDescriptor(t,r))})}return e}function _defineProperty(e,r,t){return(r=_toPropertyKey(r))in e?Object.defineProperty(e,r,{value:t,enumerable:!0,configurable:!0,writable:!0}):e[r]=t,e}function _toPropertyKey(t){var i=_toPrimitive(t,"string");return"symbol"==_typeof(i)?i:i+""}function _toPrimitive(t,r){if("object"!=_typeof(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var i=e.call(t,r||"default");if("object"!=_typeof(i))return i;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===r?String:Number)(t)}function _typeof(o){"@babel/helpers - typeof";return _typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(o){return typeof o}:function(o){return o&&"function"==typeof Symbol&&o.constructor===Symbol&&o!==Symbol.prototype?"symbol":typeof o},_typeof(o)}/**
2
+ * Copyright 2015 GeoSolutions Sas
3
+ * Copyright 2016-2024 Sourcepole AG
4
+ * All rights reserved.
5
+ *
6
+ * This source code is licensed under the BSD-style license found in the
7
+ * LICENSE file in the root directory of this source tree.
8
+ */import axios from"axios";import isMobile from"ismobilejs";import url from"url";var config={assetsPath:"assets",translationsPath:"translations",defaultFeatureStyle:{strokeColor:[0,0,255,1],strokeWidth:2,strokeDash:[4],fillColor:[0,0,255,0.33],circleRadius:10,textFill:"black",textStroke:"white"}};export default{getDefaults:function getDefaults(){return config},loadConfiguration:function loadConfiguration(){var configParams=arguments.length>0&&arguments[0]!==undefined?arguments[0]:{};var configFile="config.json";var urlQuery=url.parse(window.location.href,true).query;if(urlQuery.localConfig){configFile=urlQuery.localConfig+".json"}return axios.get(configFile,{params:configParams}).then(function(response){if(_typeof(response.data)==="object"){config=_objectSpread(_objectSpread({},config),response.data)}else{/* eslint-disable-next-line */console.warn("Broken configuration file "+configFile+"!")}// Set isMobile
9
+ config.isMobile=isMobile(window.navigator).any;return config})},isMobile:function isMobile(){return config.isMobile},getConfigProp:function getConfigProp(prop,theme){var _theme$config$section,_theme$config,_theme$config2,_ref,_ref2,_config$section;var defval=arguments.length>2&&arguments[2]!==undefined?arguments[2]:undefined;var section=config.isMobile?"mobile":"desktop";var themeProp=(_theme$config$section=theme===null||theme===void 0||(_theme$config=theme.config)===null||_theme$config===void 0||(_theme$config=_theme$config[section])===null||_theme$config===void 0?void 0:_theme$config[prop])!==null&&_theme$config$section!==void 0?_theme$config$section:theme===null||theme===void 0||(_theme$config2=theme.config)===null||_theme$config2===void 0?void 0:_theme$config2[prop];return(_ref=(_ref2=themeProp!==null&&themeProp!==void 0?themeProp:(_config$section=config[section])===null||_config$section===void 0?void 0:_config$section[prop])!==null&&_ref2!==void 0?_ref2:config[prop])!==null&&_ref!==void 0?_ref:defval},getAssetsPath:function getAssetsPath(){return config.assetsPath.replace(/\/$/g,"")},getTranslationsPath:function getTranslationsPath(){return config.translationsPath.replace(/\/$/g,"")},havePlugin:function havePlugin(name){return config.plugins[config.isMobile?"mobile":"desktop"].find(function(entry){return entry.name===name})},getPluginConfig:function getPluginConfig(name){return config.plugins[config.isMobile?"mobile":"desktop"].find(function(entry){return entry.name===name})||{}}};
@@ -0,0 +1,29 @@
1
+ function _typeof(o){"@babel/helpers - typeof";return _typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(o){return typeof o}:function(o){return o&&"function"==typeof Symbol&&o.constructor===Symbol&&o!==Symbol.prototype?"symbol":typeof o},_typeof(o)}function _toConsumableArray(r){return _arrayWithoutHoles(r)||_iterableToArray(r)||_unsupportedIterableToArray(r)||_nonIterableSpread()}function _nonIterableSpread(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function _unsupportedIterableToArray(r,a){if(r){if("string"==typeof r)return _arrayLikeToArray(r,a);var t={}.toString.call(r).slice(8,-1);return"Object"===t&&r.constructor&&(t=r.constructor.name),"Map"===t||"Set"===t?Array.from(r):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?_arrayLikeToArray(r,a):void 0}}function _iterableToArray(r){if("undefined"!=typeof Symbol&&null!=r[Symbol.iterator]||null!=r["@@iterator"])return Array.from(r)}function _arrayWithoutHoles(r){if(Array.isArray(r))return _arrayLikeToArray(r)}function _arrayLikeToArray(r,a){(null==a||a>r.length)&&(a=r.length);for(var e=0,n=Array(a);e<a;e++)n[e]=r[e];return n}function ownKeys(e,r){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);r&&(o=o.filter(function(r){return Object.getOwnPropertyDescriptor(e,r).enumerable})),t.push.apply(t,o)}return t}function _objectSpread(e){for(var r=1;r<arguments.length;r++){var t=null!=arguments[r]?arguments[r]:{};r%2?ownKeys(Object(t),!0).forEach(function(r){_defineProperty(e,r,t[r])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):ownKeys(Object(t)).forEach(function(r){Object.defineProperty(e,r,Object.getOwnPropertyDescriptor(t,r))})}return e}function _defineProperty(e,r,t){return(r=_toPropertyKey(r))in e?Object.defineProperty(e,r,{value:t,enumerable:!0,configurable:!0,writable:!0}):e[r]=t,e}function _toPropertyKey(t){var i=_toPrimitive(t,"string");return"symbol"==_typeof(i)?i:i+""}function _toPrimitive(t,r){if("object"!=_typeof(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var i=e.call(t,r||"default");if("object"!=_typeof(i))return i;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===r?String:Number)(t)}/**
2
+ * Copyright 2015 GeoSolutions Sas
3
+ * Copyright 2016-2024 Sourcepole AG
4
+ * All rights reserved.
5
+ *
6
+ * This source code is licensed under the BSD-style license found in the
7
+ * LICENSE file in the root directory of this source tree.
8
+ */import ol from"openlayers";import Proj4js from"proj4";import ConfigUtils from"./ConfigUtils";import LocaleUtils from"./LocaleUtils";var crsLabels={"EPSG:4326":"WGS 84","EPSG:3857":"WGS 84 / Pseudo Mercator"};var CoordinatesUtils={setCrsLabels:function setCrsLabels(labels){Object.assign(crsLabels,labels)},getAvailableCRS:function getAvailableCRS(){var crsList={};for(var a in Proj4js.defs){if(Object.prototype.hasOwnProperty.call(Proj4js.defs,a)){crsList[a]={label:crsLabels[a]||a}}}return crsList},getUnits:function getUnits(projection){var proj=ol.proj.get(projection);return proj.getUnits()||"degrees"},getPrecision:function getPrecision(projection){var _precisions$projectio;var precisions=ConfigUtils.getConfigProp("projections").reduce(function(res,entry){var _entry$precision;return _objectSpread(_objectSpread({},res),{},_defineProperty({},entry.code,(_entry$precision=entry.precision)!==null&&_entry$precision!==void 0?_entry$precision:0))},{});return(_precisions$projectio=precisions[projection])!==null&&_precisions$projectio!==void 0?_precisions$projectio:CoordinatesUtils.getUnits(projection)==="degrees"?4:0},getAxisOrder:function getAxisOrder(projection){var axis=ol.proj.get(projection).getAxisOrientation();return axis||"enu"},reproject:function reproject(point,source,dest){if(source===dest){return _toConsumableArray(point)}if(source&&dest){var transformed=null;try{transformed=ol.proj.transform(point,source,dest)}catch(e){transformed=[0,0]}return transformed}return null},/**
9
+ * Reprojects a bounding box.
10
+ *
11
+ * @param bbox {array} [minx, miny, maxx, maxy]
12
+ * @param source {string} SRS of the given bbox
13
+ * @param dest {string} SRS of the returned bbox
14
+ *
15
+ * @return {array} [minx, miny, maxx, maxy]
16
+ */reprojectBbox:function reprojectBbox(bbox,source,dest){if(source===dest){return _toConsumableArray(bbox)}var sw=CoordinatesUtils.reproject([bbox[0],bbox[1]],source,dest);var ne=CoordinatesUtils.reproject([bbox[2],bbox[3]],source,dest);return[].concat(_toConsumableArray(sw),_toConsumableArray(ne))},calculateAzimuth:function calculateAzimuth(p1,p2,pj){var p1proj=CoordinatesUtils.reproject(p1,pj,"EPSG:4326");var p2proj=CoordinatesUtils.reproject(p2,pj,"EPSG:4326");var lon1=p1proj[0]*Math.PI/180;var lat1=p1proj[1]*Math.PI/180;var lon2=p2proj[0]*Math.PI/180;var lat2=p2proj[1]*Math.PI/180;var dLon=lon2-lon1;var y=Math.sin(dLon)*Math.cos(lat2);var x=Math.cos(lat1)*Math.sin(lat2)-Math.sin(lat1)*Math.cos(lat2)*Math.cos(dLon);var azimuth=(Math.atan2(y,x)*180/Math.PI+360)%360;return azimuth},/**
17
+ * Extend an extent given another one
18
+ *
19
+ * @param extent1 {array} [minx, miny, maxx, maxy]
20
+ * @param extent2 {array} [minx, miny, maxx, maxy]
21
+ *
22
+ * @return {array} [minx, miny, maxx, maxy]
23
+ */extendExtent:function extendExtent(extent1,extent2){return[Math.min(extent1[0],extent2[0]),Math.min(extent1[1],extent2[1]),Math.max(extent1[2],extent2[2]),Math.max(extent1[3],extent2[3])]},/**
24
+ * Check extent validity
25
+ *
26
+ * @param extent {array} [minx, miny, maxx, maxy]
27
+ *
28
+ * @return {bool}
29
+ */isValidExtent:function isValidExtent(extent){return extent.length===4&&!(extent.indexOf(Infinity)!==-1||extent.indexOf(-Infinity)!==-1||extent.indexOf(NaN)!==-1||extent[0]>=extent[2]||extent[1]>=extent[3])},fromOgcUrnCrs:function fromOgcUrnCrs(crsStr){if(crsStr.endsWith(":CRS84")){return"EPSG:4326"}var parts=crsStr.split(":");return"EPSG:"+parts.slice(-1)},toOgcUrnCrs:function toOgcUrnCrs(crsStr){var parts=crsStr.split(":");return"urn:ogc:def:crs:"+parts[0]+"::"+parts[1]},getFormattedCoordinate:function getFormattedCoordinate(coo,srcCrs){var dstCrs=arguments.length>2&&arguments[2]!==undefined?arguments[2]:null;var decimals=arguments.length>3&&arguments[3]!==undefined?arguments[3]:-1;if(srcCrs&&dstCrs&&srcCrs!==dstCrs){coo=CoordinatesUtils.reproject(coo,srcCrs,dstCrs)}if(decimals<0){decimals=CoordinatesUtils.getPrecision(dstCrs!==null&&dstCrs!==void 0?dstCrs:srcCrs)}return coo.map(function(ord){return LocaleUtils.toLocaleFixed(ord,decimals)}).join(", ")}};export default CoordinatesUtils;