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,124 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ width="24"
4
+ height="24"
5
+ version="1.1"
6
+ id="svg4507"
7
+ sodipodi:docname="rasterexport.svg"
8
+ viewBox="0 0 24 24"
9
+ inkscape:version="1.4 (e7c3feb100, 2024-10-09)"
10
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
11
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
12
+ xmlns="http://www.w3.org/2000/svg"
13
+ xmlns:svg="http://www.w3.org/2000/svg"
14
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
15
+ xmlns:cc="http://creativecommons.org/ns#"
16
+ xmlns:dc="http://purl.org/dc/elements/1.1/">
17
+ <metadata
18
+ id="metadata4511">
19
+ <rdf:RDF>
20
+ <cc:Work
21
+ rdf:about="">
22
+ <dc:format>image/svg+xml</dc:format>
23
+ <dc:type
24
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
25
+ <dc:title />
26
+ </cc:Work>
27
+ </rdf:RDF>
28
+ </metadata>
29
+ <sodipodi:namedview
30
+ pagecolor="#555550"
31
+ bordercolor="#666666"
32
+ borderopacity="1"
33
+ objecttolerance="10"
34
+ gridtolerance="10"
35
+ guidetolerance="10"
36
+ inkscape:pageopacity="0"
37
+ inkscape:pageshadow="2"
38
+ inkscape:window-width="1600"
39
+ inkscape:window-height="842"
40
+ id="namedview4509"
41
+ showgrid="false"
42
+ inkscape:snap-text-baseline="true"
43
+ inkscape:zoom="10.470505"
44
+ inkscape:cx="36.244669"
45
+ inkscape:cy="23.542321"
46
+ inkscape:window-x="0"
47
+ inkscape:window-y="0"
48
+ inkscape:window-maximized="1"
49
+ inkscape:current-layer="svg4507"
50
+ inkscape:pagecheckerboard="false"
51
+ showguides="false"
52
+ inkscape:showpageshadow="2"
53
+ inkscape:deskcolor="#d1d1d1">
54
+ <inkscape:grid
55
+ type="xygrid"
56
+ id="grid5066"
57
+ originx="0"
58
+ originy="0"
59
+ spacingy="1"
60
+ spacingx="1"
61
+ units="px" />
62
+ </sodipodi:namedview>
63
+ <defs
64
+ id="defs4483">
65
+ <linearGradient
66
+ id="a"
67
+ y1="2.7190001"
68
+ y2="61"
69
+ x1="7.7290001"
70
+ x2="8.2709999"
71
+ gradientUnits="userSpaceOnUse"
72
+ gradientTransform="matrix(0.5,0,0,-0.48276,384.57,547.25)">
73
+ <stop
74
+ stop-color="#bdc3c7"
75
+ id="stop4468" />
76
+ <stop
77
+ offset="1"
78
+ stop-color="#dadfe1"
79
+ id="stop4470" />
80
+ </linearGradient>
81
+ <linearGradient
82
+ id="b"
83
+ y1="518.03998"
84
+ y2="524.79999"
85
+ x2="0"
86
+ gradientUnits="userSpaceOnUse">
87
+ <stop
88
+ stop-color="#566472"
89
+ id="stop4473" />
90
+ <stop
91
+ offset="1"
92
+ stop-color="#5e6b78"
93
+ id="stop4475" />
94
+ </linearGradient>
95
+ <linearGradient
96
+ id="c"
97
+ y1="524.79999"
98
+ x1="404.57001"
99
+ y2="531.79999"
100
+ x2="411.57001"
101
+ gradientUnits="userSpaceOnUse">
102
+ <stop
103
+ stop-color="#383e51"
104
+ id="stop4478" />
105
+ <stop
106
+ offset="1"
107
+ stop-color="#655c6f"
108
+ stop-opacity="0"
109
+ id="stop4480" />
110
+ </linearGradient>
111
+ </defs>
112
+ <path
113
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
114
+ d="m 4.5,2.5 v 5 1 h 2 v -1 -3 h 13 v 13 h -3 -1 v 2 h 1 5 v -17 z"
115
+ id="path4510"
116
+ inkscape:connector-curvature="0"
117
+ sodipodi:nodetypes="ccccccccccccccc" />
118
+ <path
119
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.50002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
120
+ d="m 5.249968,10.50001 h 4.500063 v 6.000084 h 4.500064 L 7.499999,23.25019 0.749904,16.500094 h 4.500064 z"
121
+ id="path5074-3"
122
+ inkscape:connector-curvature="0"
123
+ sodipodi:nodetypes="cccccccc" />
124
+ </svg>
package/icons/rect.svg ADDED
@@ -0,0 +1,63 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ width="24"
4
+ height="24"
5
+ viewBox="0 0 24 24"
6
+ version="1.1"
7
+ id="svg11"
8
+ inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
9
+ sodipodi:docname="rect.svg"
10
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
11
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
12
+ xmlns="http://www.w3.org/2000/svg"
13
+ xmlns:svg="http://www.w3.org/2000/svg"
14
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
15
+ xmlns:cc="http://creativecommons.org/ns#"
16
+ xmlns:dc="http://purl.org/dc/elements/1.1/">
17
+ <metadata
18
+ id="metadata17">
19
+ <rdf:RDF>
20
+ <cc:Work
21
+ rdf:about="">
22
+ <dc:format>image/svg+xml</dc:format>
23
+ <dc:type
24
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
25
+ </cc:Work>
26
+ </rdf:RDF>
27
+ </metadata>
28
+ <defs
29
+ id="defs15" />
30
+ <sodipodi:namedview
31
+ pagecolor="#878787"
32
+ bordercolor="#666666"
33
+ borderopacity="1"
34
+ objecttolerance="10"
35
+ gridtolerance="10"
36
+ guidetolerance="10"
37
+ inkscape:pageopacity="0"
38
+ inkscape:pageshadow="2"
39
+ inkscape:window-width="1920"
40
+ inkscape:window-height="1171"
41
+ id="namedview13"
42
+ showgrid="true"
43
+ units="px"
44
+ inkscape:zoom="55.625732"
45
+ inkscape:cx="11.41558"
46
+ inkscape:cy="8.6740432"
47
+ inkscape:window-x="1600"
48
+ inkscape:window-y="0"
49
+ inkscape:window-maximized="1"
50
+ inkscape:current-layer="svg11"
51
+ inkscape:showpageshadow="2"
52
+ inkscape:pagecheckerboard="0"
53
+ inkscape:deskcolor="#878787">
54
+ <inkscape:grid
55
+ type="xygrid"
56
+ id="grid4473" />
57
+ </sodipodi:namedview>
58
+ <path
59
+ style="color:#000000;fill:#000000;-inkscape-stroke:none"
60
+ d="M 2,4 V 5.5 20 H 22 V 4 Z M 4,6 H 20 V 18 H 4 Z"
61
+ id="rect738"
62
+ sodipodi:nodetypes="ccccccccccc" />
63
+ </svg>
@@ -0,0 +1,44 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
4
+ xmlns:cc="http://creativecommons.org/ns#"
5
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
+ xmlns:svg="http://www.w3.org/2000/svg"
7
+ xmlns="http://www.w3.org/2000/svg"
8
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
9
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
10
+ height="24"
11
+ id="Layer_1"
12
+ version="1.1"
13
+ viewBox="0 0 24 24"
14
+ width="24"
15
+ xml:space="preserve"
16
+ sodipodi:docname="refresh.svg"
17
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata
18
+ id="metadata9"><rdf:RDF><cc:Work
19
+ rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
20
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
21
+ id="defs7" /><sodipodi:namedview
22
+ pagecolor="#ffffff"
23
+ bordercolor="#666666"
24
+ borderopacity="1"
25
+ objecttolerance="10"
26
+ gridtolerance="10"
27
+ guidetolerance="10"
28
+ inkscape:pageopacity="0"
29
+ inkscape:pageshadow="2"
30
+ inkscape:window-width="1853"
31
+ inkscape:window-height="1025"
32
+ id="namedview5"
33
+ showgrid="false"
34
+ inkscape:zoom="7.375"
35
+ inkscape:cx="-3.2542373"
36
+ inkscape:cy="16"
37
+ inkscape:window-x="67"
38
+ inkscape:window-y="27"
39
+ inkscape:window-maximized="1"
40
+ inkscape:current-layer="Layer_1" /><path
41
+ d="m 22.285714,12 c -1.044858,0 -1.540285,0.736285 -1.714285,1.513715 C 19.944856,16.311429 17.286,20.571429 12,20.571429 7.266,20.571429 3.4285714,16.733144 3.4285714,12 3.4285714,7.2668565 7.266,3.428571 12,3.428571 c 1.92,0 3.681429,0.645429 5.108571,1.7142855 h -1.68 c -0.946286,0 -1.714286,0.768 -1.714286,1.714287 0,0.9462855 0.768,1.7142855 1.714286,1.7142855 h 5.142858 c 0.946285,0 1.714285,-0.768 1.714285,-1.7142855 V 1.7142855 C 22.285714,0.768 21.517714,0 20.571429,0 19.625143,0 18.857143,0.768 18.857143,1.7142855 v 0.444 C 16.914,0.7988565 14.551714,0 12,0 5.3725714,0 0,5.372571 0,12 0,18.627429 5.3725714,24 12,24 20.553429,24 24,15.857143 24,13.821429 24,12.576 23.089714,12 22.285714,12 Z"
42
+ id="path2"
43
+ inkscape:connector-curvature="0"
44
+ style="stroke-width:0.85714293" /></svg>
@@ -0,0 +1,60 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Generated by IcoMoon.io -->
3
+
4
+ <svg
5
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
6
+ xmlns:cc="http://creativecommons.org/ns#"
7
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
+ xmlns:svg="http://www.w3.org/2000/svg"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ version="1.1"
13
+ width="24"
14
+ height="24"
15
+ viewBox="0 0 24 24"
16
+ id="svg6"
17
+ sodipodi:docname="uniE014.svg"
18
+ inkscape:version="0.92.3 (2405546, 2018-03-11)">
19
+ <metadata
20
+ id="metadata12">
21
+ <rdf:RDF>
22
+ <cc:Work
23
+ rdf:about="">
24
+ <dc:format>image/svg+xml</dc:format>
25
+ <dc:type
26
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
27
+ <dc:title>uniE014</dc:title>
28
+ </cc:Work>
29
+ </rdf:RDF>
30
+ </metadata>
31
+ <defs
32
+ id="defs10" />
33
+ <sodipodi:namedview
34
+ pagecolor="#ffffff"
35
+ bordercolor="#666666"
36
+ borderopacity="1"
37
+ objecttolerance="10"
38
+ gridtolerance="10"
39
+ guidetolerance="10"
40
+ inkscape:pageopacity="0"
41
+ inkscape:pageshadow="2"
42
+ inkscape:window-width="1280"
43
+ inkscape:window-height="995"
44
+ id="namedview8"
45
+ showgrid="false"
46
+ inkscape:zoom="7.375"
47
+ inkscape:cx="16"
48
+ inkscape:cy="16"
49
+ inkscape:window-x="1600"
50
+ inkscape:window-y="0"
51
+ inkscape:window-maximized="1"
52
+ inkscape:current-layer="svg6" />
53
+ <title
54
+ id="title2">uniE014</title>
55
+ <path
56
+ d="m 17.6749,2.98435 3.3229,3.3411 q 0.1491,0.1491 0.1491,0.3451 0,0.196 -0.1491,0.3269 l -4.984,5.0029 4.984,5.0029 q 0.1491,0.1309 0.1491,0.3269 0,0.196 -0.1491,0.3451 l -3.3229,3.3229 q -0.1491,0.1491 -0.3451,0.1491 -0.196,0 -0.3269,-0.1491 L 12,16.01415 l -5.0029,4.984 q -0.1309,0.1491 -0.3269,0.1491 -0.196,0 -0.3451,-0.1491 l -3.3229,-3.3229 q -0.1491,-0.1491 -0.1491,-0.3451 0,-0.196 0.1491,-0.3269 l 4.984,-5.0029 -4.984,-5.0029 q -0.1491,-0.1309 -0.1491,-0.3269 0,-0.196 0.1491,-0.3451 l 3.3229,-3.3229 q 0.1491,-0.1491 0.3451,-0.1491 0.196,0 0.3269,0.1491 L 12,7.98655 17.0029,2.98365 q 0.1309,-0.1309 0.3269,-0.1309 0.196,0 0.3451,0.1309 z"
57
+ id="path4"
58
+ inkscape:connector-curvature="0"
59
+ style="stroke-width:0.69999999" />
60
+ </svg>
@@ -0,0 +1,84 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
3
+
4
+ <svg
5
+ fill="#000000"
6
+ version="1.1"
7
+ id="Capa_1"
8
+ viewBox="0 0 24 24"
9
+ xml:space="preserve"
10
+ sodipodi:docname="report.svg"
11
+ width="24"
12
+ height="24"
13
+ inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
14
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
15
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
16
+ xmlns="http://www.w3.org/2000/svg"
17
+ xmlns:svg="http://www.w3.org/2000/svg"><defs
18
+ id="defs3" /><sodipodi:namedview
19
+ id="namedview3"
20
+ pagecolor="#ffffff"
21
+ bordercolor="#666666"
22
+ borderopacity="1.0"
23
+ inkscape:showpageshadow="2"
24
+ inkscape:pageopacity="0.0"
25
+ inkscape:pagecheckerboard="0"
26
+ inkscape:deskcolor="#d1d1d1"
27
+ showgrid="true"
28
+ inkscape:zoom="22.758063"
29
+ inkscape:cx="6.2834872"
30
+ inkscape:cy="3.5372078"
31
+ inkscape:window-width="1600"
32
+ inkscape:window-height="842"
33
+ inkscape:window-x="0"
34
+ inkscape:window-y="0"
35
+ inkscape:window-maximized="1"
36
+ inkscape:current-layer="g4"><inkscape:grid
37
+ id="grid3"
38
+ units="px"
39
+ originx="0"
40
+ originy="0"
41
+ spacingx="0.99999999"
42
+ spacingy="0.99999999"
43
+ empcolor="#0099e5"
44
+ empopacity="0.30196078"
45
+ color="#0099e5"
46
+ opacity="0.14901961"
47
+ empspacing="5"
48
+ dotted="false"
49
+ gridanglex="30"
50
+ gridanglez="30"
51
+ visible="true" /></sodipodi:namedview>
52
+ <g
53
+ id="g3">
54
+
55
+
56
+
57
+
58
+ <g
59
+ id="g4"
60
+ transform="matrix(0.11578947,0,0,0.11578947,0.72795299,1.0000003)"><path
61
+ d="M 123.25859,-2.5909092e-6 19.699,0 20.000025,190 H 175 l 0.0768,-138.181819 z M 149.16768,43.181817 H 131.89496 V 25.909089 Z M 36.894953,172.72728 V 17.272725 h 77.727277 v 34.545456 c 0,4.142 4.49372,8.690989 8.63636,8.636364 L 157.72985,60 l 0.0742,112.72728 z"
62
+ id="path1"
63
+ sodipodi:nodetypes="cccccccccccccssccc"
64
+ style="stroke-width:1" /><rect
65
+ x="54.167679"
66
+ y="146.81818"
67
+ width="86.36364"
68
+ height="8.6363716"
69
+ id="rect1" /><rect
70
+ x="54.167679"
71
+ y="51.81818"
72
+ width="51.818184"
73
+ height="8.636363"
74
+ id="rect2" /><polygon
75
+ points="88.623,105.748 105.371,122.495 133.861,94.005 133.861,99.535 143.861,99.535 143.861,76.935 121.248,76.935 121.248,86.935 126.79,86.935 105.371,108.353 88.623,91.605 51.597,128.634 58.667,135.706 "
76
+ id="polygon2"
77
+ transform="translate(-0.3795,2.6038588)" /><rect
78
+ x="54.167679"
79
+ y="34.545452"
80
+ width="51.818184"
81
+ height="8.6363649"
82
+ id="rect3" /></g>
83
+ </g>
84
+ </svg>
@@ -0,0 +1,40 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ viewBox="0 0 24 24"
4
+ version="1.1"
5
+ id="svg4"
6
+ sodipodi:docname="routing-bicycle.svg"
7
+ width="24"
8
+ height="24"
9
+ inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
10
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
11
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
12
+ xmlns="http://www.w3.org/2000/svg"
13
+ xmlns:svg="http://www.w3.org/2000/svg">
14
+ <defs
15
+ id="defs8" />
16
+ <sodipodi:namedview
17
+ id="namedview6"
18
+ pagecolor="#ffffff"
19
+ bordercolor="#666666"
20
+ borderopacity="1.0"
21
+ inkscape:showpageshadow="2"
22
+ inkscape:pageopacity="0.0"
23
+ inkscape:pagecheckerboard="0"
24
+ inkscape:deskcolor="#d1d1d1"
25
+ showgrid="false"
26
+ inkscape:zoom="1.9169223"
27
+ inkscape:cx="-17.215095"
28
+ inkscape:cy="91.031338"
29
+ inkscape:window-width="1600"
30
+ inkscape:window-height="841"
31
+ inkscape:window-x="0"
32
+ inkscape:window-y="0"
33
+ inkscape:window-maximized="1"
34
+ inkscape:current-layer="svg4" />
35
+ <!--! Font Awesome Pro 6.3.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. -->
36
+ <path
37
+ d="m 11.725,4.3 c -0.457187,0 -0.825,0.367812 -0.825,0.825 0,0.457187 0.367813,0.825 0.825,0.825 h 0.883438 l 1.189375,2.2 H 8.6621875 L 7.7203125,6.84375 C 7.565625,6.627187 7.3146875,6.5 7.05,6.5 H 5.125 C 4.6678125,6.5 4.3,6.867813 4.3,7.325 4.3,7.782188 4.6678125,8.15 5.125,8.15 H 6.6271875 L 7.386875,9.205312 6.4725,11.030625 C 6.12875,10.944688 5.7678125,10.9 5.4,10.9 2.9696875,10.9 1,12.869687 1,15.3 c 0,2.430312 1.9696875,4.4 4.4,4.4 2.2446875,0 4.0940625,-1.680937 4.365625,-3.85 H 11.45 c 0.292188,0 0.560313,-0.154687 0.711563,-0.405625 l 2.915,-4.932813 L 15.8225,11.89 c -0.99,0.807812 -1.6225,2.035 -1.6225,3.41 0,2.430312 1.969688,4.4 4.4,4.4 2.430313,0 4.4,-1.969688 4.4,-4.4 0,-2.430313 -1.969687,-4.4 -4.4,-4.4 -0.464063,0 -0.910937,0.07219 -1.330312,0.20625 L 13.904375,4.8775 C 13.711875,4.52 13.340625,4.3 12.935,4.3 Z m 5.039375,9.339688 1.110313,2.052187 c 0.216562,0.402188 0.718437,0.55 1.117187,0.333437 0.39875,-0.216562 0.55,-0.718437 0.333438,-1.117187 L 18.215,12.855937 c 0.12375,-0.02062 0.254375,-0.03094 0.385,-0.03094 1.368125,0 2.475,1.106875 2.475,2.475 0,1.368125 -1.106875,2.475 -2.475,2.475 -1.368125,0 -2.475,-1.106875 -2.475,-2.475 0,-0.639375 0.240625,-1.220312 0.639375,-1.660312 z M 5.57875,15.85 H 7.813125 C 7.5621875,16.953438 6.575625,17.775 5.4,17.775 c -1.368125,0 -2.475,-1.106875 -2.475,-2.475 0,-1.368125 1.106875,-2.475 2.475,-2.475 0.058437,0 0.116875,0.0034 0.1753125,0.0069 l -0.831875,1.667188 C 4.4340625,15.12125 4.884375,15.853437 5.57875,15.853437 Z M 6.7371875,14.2 8.48,10.717812 10.985938,14.196563 10.9825,14.2 H 6.73375 Z M 9.8515625,9.8 H 13.577813 L 11.896875,12.64625 9.848125,9.8 Z"
38
+ id="path2"
39
+ style="stroke-width:0.034375" />
40
+ </svg>
@@ -0,0 +1,40 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ viewBox="0 0 24 24"
4
+ version="1.1"
5
+ id="svg245"
6
+ sodipodi:docname="routing-bus.svg"
7
+ width="24"
8
+ height="24"
9
+ inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
10
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
11
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
12
+ xmlns="http://www.w3.org/2000/svg"
13
+ xmlns:svg="http://www.w3.org/2000/svg">
14
+ <defs
15
+ id="defs249" />
16
+ <sodipodi:namedview
17
+ id="namedview247"
18
+ pagecolor="#ffffff"
19
+ bordercolor="#666666"
20
+ borderopacity="1.0"
21
+ inkscape:showpageshadow="2"
22
+ inkscape:pageopacity="0.0"
23
+ inkscape:pagecheckerboard="0"
24
+ inkscape:deskcolor="#d1d1d1"
25
+ showgrid="false"
26
+ inkscape:zoom="11.3125"
27
+ inkscape:cx="36.243094"
28
+ inkscape:cy="34.254144"
29
+ inkscape:window-width="1920"
30
+ inkscape:window-height="1051"
31
+ inkscape:window-x="1600"
32
+ inkscape:window-y="0"
33
+ inkscape:window-maximized="1"
34
+ inkscape:current-layer="svg245" />
35
+ <!--! Font Awesome Pro 6.3.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. -->
36
+ <path
37
+ d="m 12,1 c 5.775,0 9.625,1.5125 9.625,3.4375 V 5.125 6.5 C 22.385547,6.5 23,7.1144531 23,7.875 v 2.75 C 23,11.385547 22.385547,12 21.625,12 v 6.875 c 0,0.760547 -0.614453,1.375 -1.375,1.375 v 1.375 C 20.25,22.385547 19.635547,23 18.875,23 H 17.5 c -0.760547,0 -1.375,-0.614453 -1.375,-1.375 V 20.25 h -8.25 v 1.375 C 7.875,22.385547 7.2605469,23 6.5,23 H 5.125 C 4.3644531,23 3.75,22.385547 3.75,21.625 V 20.25 c -0.7605469,0 -1.375,-0.614453 -1.375,-1.375 V 12 C 1.6144531,12 1,11.385547 1,10.625 V 7.875 C 1,7.1144531 1.6144531,6.5 2.375,6.5 v 0 -1.375 0 -0.6875 C 2.375,2.5125 6.225,1 12,1 Z M 5.125,7.875 V 12 c 0,0.760547 0.6144531,1.375 1.375,1.375 h 4.8125 V 6.5 H 6.5 C 5.7394531,6.5 5.125,7.1144531 5.125,7.875 Z m 7.5625,5.5 H 17.5 c 0.760547,0 1.375,-0.614453 1.375,-1.375 V 7.875 C 18.875,7.1144531 18.260547,6.5 17.5,6.5 h -4.8125 z m -6.875,4.8125 a 1.375,1.375 0 1 0 0,-2.75 1.375,1.375 0 1 0 0,2.75 z m 12.375,0 a 1.375,1.375 0 1 0 0,-2.75 1.375,1.375 0 1 0 0,2.75 z M 16.125,4.4375 C 16.125,4.059375 15.815625,3.75 15.4375,3.75 h -6.875 c -0.378125,0 -0.6875,0.309375 -0.6875,0.6875 0,0.378125 0.309375,0.6875 0.6875,0.6875 h 6.875 c 0.378125,0 0.6875,-0.309375 0.6875,-0.6875 z"
38
+ id="path243"
39
+ style="stroke-width:0.0429688" />
40
+ </svg>
@@ -0,0 +1,40 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ viewBox="0 0 24 24"
4
+ version="1.1"
5
+ id="svg492"
6
+ sodipodi:docname="routing-cablecar.svg"
7
+ width="24"
8
+ height="24"
9
+ inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
10
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
11
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
12
+ xmlns="http://www.w3.org/2000/svg"
13
+ xmlns:svg="http://www.w3.org/2000/svg">
14
+ <defs
15
+ id="defs496" />
16
+ <sodipodi:namedview
17
+ id="namedview494"
18
+ pagecolor="#ffffff"
19
+ bordercolor="#666666"
20
+ borderopacity="1.0"
21
+ inkscape:showpageshadow="2"
22
+ inkscape:pageopacity="0.0"
23
+ inkscape:pagecheckerboard="0"
24
+ inkscape:deskcolor="#d1d1d1"
25
+ showgrid="false"
26
+ inkscape:zoom="0.67773438"
27
+ inkscape:cx="227.22767"
28
+ inkscape:cy="310.59366"
29
+ inkscape:window-width="1600"
30
+ inkscape:window-height="841"
31
+ inkscape:window-x="0"
32
+ inkscape:window-y="0"
33
+ inkscape:window-maximized="1"
34
+ inkscape:current-layer="svg492" />
35
+ <!--! Font Awesome Pro 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. -->
36
+ <path
37
+ d="m 13.374973,1.0002205 a 1.3749724,1.3749724 0 1 1 0,2.7499448 1.3749724,1.3749724 0 1 1 0,-2.7499448 z M 7.8750829,3.4064222 a 1.3749725,1.3749725 0 1 1 2.7499451,0 1.3749726,1.3749726 0 1 1 -2.7499451,0 z M 2.3751932,13.374973 c 0,-1.516767 1.2331784,-2.749946 2.7499448,-2.749946 h 5.843633 V 7.7676629 L 2.2419928,9.5723142 C 1.6834102,9.6883274 1.137718,9.3273972 1.0217047,8.7731114 0.90569145,8.2188257 1.2666217,7.6688367 1.8209075,7.5528234 l 9.9685495,-2.0624586 9.96855,-2.0624586 c 0.558583,-0.1160133 1.104275,0.2449169 1.220288,0.7992027 0.116014,0.5542857 -0.244916,1.1042747 -0.799202,1.220288 L 13.031229,7.337984 v 3.287043 h 5.843633 c 1.516767,0 2.749945,1.233179 2.749945,2.749946 v 6.874861 c 0,1.516767 -1.233178,2.749946 -2.749945,2.749946 H 5.125138 c -1.5167664,0 -2.7499448,-1.233179 -2.7499448,-2.749946 z m 2.7499448,0 c -0.3781174,0 -0.6874862,0.309369 -0.6874862,0.687486 v 2.749945 c 0,0.378116 0.3093688,0.687486 0.6874862,0.687486 h 2.7499449 c 0.3781174,0 0.6874862,-0.30937 0.6874862,-0.687486 v -2.749945 c 0,-0.378117 -0.3093688,-0.687486 -0.6874862,-0.687486 z m 4.8124035,0.687486 v 2.749945 c 0,0.378116 0.3093685,0.687486 0.6874865,0.687486 h 2.749945 c 0.378117,0 0.687486,-0.30937 0.687486,-0.687486 v -2.749945 c 0,-0.378117 -0.309369,-0.687486 -0.687486,-0.687486 h -2.749945 c -0.378118,0 -0.6874865,0.309369 -0.6874865,0.687486 z m 6.1873755,-0.687486 c -0.378117,0 -0.687486,0.309369 -0.687486,0.687486 v 2.749945 c 0,0.378116 0.309369,0.687486 0.687486,0.687486 h 2.749945 c 0.378118,0 0.687486,-0.30937 0.687486,-0.687486 v -2.749945 c 0,-0.378117 -0.309368,-0.687486 -0.687486,-0.687486 z"
38
+ id="path490"
39
+ style="stroke-width:0.0429679" />
40
+ </svg>
@@ -0,0 +1,40 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ viewBox="0 0 24 24"
4
+ version="1.1"
5
+ id="svg4"
6
+ sodipodi:docname="routing-car.svg"
7
+ width="24"
8
+ height="24"
9
+ inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
10
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
11
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
12
+ xmlns="http://www.w3.org/2000/svg"
13
+ xmlns:svg="http://www.w3.org/2000/svg">
14
+ <defs
15
+ id="defs8" />
16
+ <sodipodi:namedview
17
+ id="namedview6"
18
+ pagecolor="#ffffff"
19
+ bordercolor="#666666"
20
+ borderopacity="1.0"
21
+ inkscape:showpageshadow="2"
22
+ inkscape:pageopacity="0.0"
23
+ inkscape:pagecheckerboard="0"
24
+ inkscape:deskcolor="#d1d1d1"
25
+ showgrid="false"
26
+ inkscape:zoom="0.95846115"
27
+ inkscape:cx="135.63408"
28
+ inkscape:cy="245.70636"
29
+ inkscape:window-width="1600"
30
+ inkscape:window-height="841"
31
+ inkscape:window-x="0"
32
+ inkscape:window-y="0"
33
+ inkscape:window-maximized="1"
34
+ inkscape:current-layer="svg4" />
35
+ <!--! Font Awesome Pro 6.3.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. -->
36
+ <path
37
+ d="M 6.809375,6.044531 5.6878906,9.25 H 18.312109 L 17.190625,6.044531 C 16.997266,5.494531 16.477344,5.125 15.892969,5.125 H 8.1070313 c -0.584375,0 -1.1042969,0.369531 -1.2976563,0.919531 z M 2.7015625,9.45625 4.2140625,5.137891 C 4.7941406,3.483594 6.3539062,2.375 8.1070313,2.375 h 7.7859377 c 1.753125,0 3.31289,1.108594 3.892969,2.762891 l 1.5125,4.318359 C 22.295313,9.86875 23,10.852734 23,12 v 6.1875 2.0625 c 0,0.760547 -0.614453,1.375 -1.375,1.375 H 20.25 c -0.760547,0 -1.375,-0.614453 -1.375,-1.375 V 18.1875 H 5.125 V 20.25 c 0,0.760547 -0.6144531,1.375 -1.375,1.375 H 2.375 C 1.6144531,21.625 1,21.010547 1,20.25 V 18.1875 12 C 1,10.852734 1.7046875,9.86875 2.7015625,9.45625 Z M 6.5,13.375 a 1.375,1.375 0 1 0 -2.75,0 1.375,1.375 0 1 0 2.75,0 z m 12.375,1.375 a 1.375,1.375 0 1 0 0,-2.75 1.375,1.375 0 1 0 0,2.75 z"
38
+ id="path2"
39
+ style="stroke-width:0.0429688" />
40
+ </svg>
@@ -0,0 +1,40 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ viewBox="0 0 24 24"
4
+ version="1.1"
5
+ id="svg219"
6
+ sodipodi:docname="routing-ship.svg"
7
+ width="24"
8
+ height="24"
9
+ inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
10
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
11
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
12
+ xmlns="http://www.w3.org/2000/svg"
13
+ xmlns:svg="http://www.w3.org/2000/svg">
14
+ <defs
15
+ id="defs223" />
16
+ <sodipodi:namedview
17
+ id="namedview221"
18
+ pagecolor="#ffffff"
19
+ bordercolor="#666666"
20
+ borderopacity="1.0"
21
+ inkscape:showpageshadow="2"
22
+ inkscape:pageopacity="0.0"
23
+ inkscape:pagecheckerboard="0"
24
+ inkscape:deskcolor="#d1d1d1"
25
+ showgrid="false"
26
+ inkscape:zoom="3.8338446"
27
+ inkscape:cx="93.90052"
28
+ inkscape:cy="11.607148"
29
+ inkscape:window-width="1600"
30
+ inkscape:window-height="841"
31
+ inkscape:window-x="0"
32
+ inkscape:window-y="0"
33
+ inkscape:window-maximized="1"
34
+ inkscape:current-layer="svg219" />
35
+ <!--! Font Awesome Pro 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. -->
36
+ <path
37
+ d="m 8.3325472,3.441881 c 0,-0.6761866 0.5462977,-1.2224843 1.2224843,-1.2224843 h 4.8899365 c 0.676187,0 1.222484,0.5462977 1.222484,1.2224843 v 1.2224844 h 1.833727 c 1.01237,0 1.833726,0.8213566 1.833726,1.8337264 v 4.8899372 l 1.696197,0.565399 c 0.882481,0.294161 1.126978,1.432599 0.439331,2.059123 l -3.858466,3.537564 c -0.618883,0.359104 -1.325632,0.576859 -1.944515,0.576859 -0.748771,0 -1.558667,-0.29416 -2.261596,-0.775513 -0.844278,-0.592141 -1.971256,-0.592141 -2.815533,0 -0.6532651,0.450791 -1.4517002,0.775513 -2.2615961,0.775513 -0.6188827,0 -1.3256314,-0.217755 -1.9445141,-0.576859 L 2.5257466,14.012551 C 1.8380992,13.382207 2.0825961,12.247589 2.9650769,11.953428 L 4.6650942,11.388029 V 6.4980918 c 0,-1.0123698 0.8213567,-1.8337264 1.8337265,-1.8337264 H 8.3325472 Z M 7.1100629,10.574313 11.228306,9.2028384 c 0.500455,-0.1680916 1.042932,-0.1680916 1.547207,0 l 4.114424,1.3714746 V 7.109334 H 7.1100629 Z m 5.5966851,7.762776 c 0.85956,0.592141 1.910132,0.997089 2.960704,0.997089 1.027651,0 2.116426,-0.412589 2.956884,-0.997089 v 0 c 0.454612,-0.324723 1.073494,-0.297981 1.497544,0.06494 0.550118,0.454612 1.241585,0.802256 1.933053,0.962707 0.657085,0.15281 1.065854,0.809896 0.913043,1.466981 -0.15281,0.657085 -0.809896,1.065853 -1.466981,0.913043 -0.935965,-0.217755 -1.715298,-0.630344 -2.223393,-0.955066 -1.107877,0.595961 -2.349463,0.989448 -3.61015,0.989448 -1.218664,0 -2.315079,-0.378206 -3.071491,-0.72203 -0.221576,-0.103147 -0.42405,-0.202474 -0.595962,-0.29416 -0.171911,0.09169 -0.370565,0.194834 -0.595961,0.29416 -0.756411,0.343824 -1.8528267,0.72203 -3.0714908,0.72203 -1.260687,0 -2.5022726,-0.393487 -3.610149,-0.985628 C 4.2104829,21.114416 3.4349694,21.530825 2.4990048,21.74858 1.8419195,21.901391 1.1848341,21.492622 1.0320236,20.835537 0.87921309,20.178452 1.2879812,19.521367 1.9450666,19.368556 2.6365343,19.208105 3.328002,18.860461 3.8781199,18.40585 4.3021692,18.046745 4.9210519,18.020003 5.3756632,18.3409 v 0 c 0.8442783,0.58068 1.9292331,0.993269 2.956884,0.993269 1.0505725,0 2.1011448,-0.404948 2.9607038,-0.997089 0.424049,-0.301801 0.989448,-0.301801 1.413497,0 z"
38
+ id="path217"
39
+ style="stroke-width:0.0382026" />
40
+ </svg>
@@ -0,0 +1,40 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg
3
+ viewBox="0 0 24 24"
4
+ version="1.1"
5
+ id="svg4"
6
+ sodipodi:docname="routing-train.svg"
7
+ width="24"
8
+ height="24"
9
+ inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
10
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
11
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
12
+ xmlns="http://www.w3.org/2000/svg"
13
+ xmlns:svg="http://www.w3.org/2000/svg">
14
+ <defs
15
+ id="defs8" />
16
+ <sodipodi:namedview
17
+ id="namedview6"
18
+ pagecolor="#ffffff"
19
+ bordercolor="#666666"
20
+ borderopacity="1.0"
21
+ inkscape:showpageshadow="2"
22
+ inkscape:pageopacity="0.0"
23
+ inkscape:pagecheckerboard="0"
24
+ inkscape:deskcolor="#d1d1d1"
25
+ showgrid="false"
26
+ inkscape:zoom="1.3554688"
27
+ inkscape:cx="180.74928"
28
+ inkscape:cy="138.32853"
29
+ inkscape:window-width="1600"
30
+ inkscape:window-height="841"
31
+ inkscape:window-x="0"
32
+ inkscape:window-y="0"
33
+ inkscape:window-maximized="1"
34
+ inkscape:current-layer="svg4" />
35
+ <!--! Font Awesome Pro 6.3.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. -->
36
+ <path
37
+ d="M 5.7142857,-0.5714285 C 3.1116071,-0.5714285 1,1.5401786 1,4.1428572 V 16.714285 c 0,2.357143 1.7285714,4.306697 3.9825893,4.660268 l -2.2589286,2.258929 c -0.34375,0.34375 -0.098214,0.937947 0.3879464,0.937947 h 1.9495536 c 0.4174107,0 0.8151786,-0.166964 1.1098214,-0.461607 l 2.6861608,-2.681251 h 6.2857141 l 2.68125,2.68125 c 0.294643,0.294643 0.692411,0.461607 1.109822,0.461607 h 1.954464 c 0.491071,0 0.736607,-0.594196 0.387946,-0.937946 L 19.017411,21.374553 C 21.276339,21.025892 23,19.071428 23,16.714285 V 4.1428572 C 23,1.5401786 20.888393,-0.5714285 18.285714,-0.5714285 Z M 4.1428571,4.1428572 c 0,-0.8691964 0.7022322,-1.5714286 1.5714286,-1.5714286 H 18.285714 c 0.869197,0 1.571429,0.7022322 1.571429,1.5714286 v 4.7142857 c 0,0.8691966 -0.702232,1.5714281 -1.571429,1.5714281 H 5.7142857 c -0.8691964,0 -1.5714286,-0.7022315 -1.5714286,-1.5714281 z M 12,13.571428 a 2.357143,2.357143 0 1 1 0,4.714286 2.357143,2.357143 0 1 1 0,-4.714286 z"
38
+ id="path2"
39
+ style="stroke-width:0.0491071" />
40
+ </svg>