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.
- package/LICENSE +28 -0
- package/README.md +68 -0
- package/actions/display.js +7 -0
- package/actions/editing.js +7 -0
- package/actions/layerinfo.js +7 -0
- package/actions/layers.js +8 -0
- package/actions/localConfig.js +7 -0
- package/actions/locale.js +10 -0
- package/actions/locate.js +8 -0
- package/actions/logging.js +7 -0
- package/actions/map.js +15 -0
- package/actions/measurement.js +8 -0
- package/actions/processNotifications.js +7 -0
- package/actions/redlining.js +7 -0
- package/actions/redliningPick.js +7 -0
- package/actions/serviceinfo.js +7 -0
- package/actions/task.js +9 -0
- package/actions/theme.js +24 -0
- package/actions/windows.js +10 -0
- package/components/AppMenu.js +8 -0
- package/components/AttributeForm.js +34 -0
- package/components/AutoEditForm.js +8 -0
- package/components/CoordinateDisplayer.js +7 -0
- package/components/EditComboField.js +10 -0
- package/components/EditUploadField.js +8 -0
- package/components/FullscreenSwitcher.js +8 -0
- package/components/Icon.js +7 -0
- package/components/IdentifyViewer.js +16 -0
- package/components/ImportLayer.js +25 -0
- package/components/LayerInfoWindow.js +7 -0
- package/components/LinkFeatureForm.js +10 -0
- package/components/MapSelection.js +13 -0
- package/components/NumericInputWindow.js +7 -0
- package/components/PickFeature.js +7 -0
- package/components/PluginsContainer.js +8 -0
- package/components/PrintSelection.js +54 -0
- package/components/QtDesignerForm.js +30 -0
- package/components/ResizeableWindow.js +12 -0
- package/components/SearchBox.js +26 -0
- package/components/ServiceInfoWindow.js +7 -0
- package/components/SideBar.js +9 -0
- package/components/StandardApp.js +35 -0
- package/components/Swipeable.js +1 -0
- package/components/TaskBar.js +7 -0
- package/components/ThemeLayersListWindow.js +9 -0
- package/components/ThemeList.js +12 -0
- package/components/Toolbar.js +7 -0
- package/components/WindowManager.js +7 -0
- package/components/map/OlLayer.js +12 -0
- package/components/map/OlLocate.css +56 -0
- package/components/map/OlLocate.js +17 -0
- package/components/map/OlMap.js +11 -0
- package/components/map/layers/BingLayer.js +8 -0
- package/components/map/layers/GoogleLayer.js +27 -0
- package/components/map/layers/GraticuleLayer.js +8 -0
- package/components/map/layers/ImageLayer.js +8 -0
- package/components/map/layers/MVTLayer.js +7 -0
- package/components/map/layers/OSMLayer.js +8 -0
- package/components/map/layers/OverlayLayer.js +10 -0
- package/components/map/layers/VectorLayer.js +14 -0
- package/components/map/layers/WFSLayer.js +11 -0
- package/components/map/layers/WMSLayer.js +11 -0
- package/components/map/layers/WMTSLayer.js +9 -0
- package/components/map/layers/XYZLayer.js +7 -0
- package/components/map/layers/index.js +8 -0
- package/components/map3d/BottomBar3D.js +7 -0
- package/components/map3d/Compare3D.js +12 -0
- package/components/map3d/Draw3D.js +10 -0
- package/components/map3d/ExportObjects3D.js +17 -0
- package/components/map3d/HeightProfile3D.js +8 -0
- package/components/map3d/HideObjects3D.js +12 -0
- package/components/map3d/Identify3D.js +13 -0
- package/components/map3d/LayerTree3D.js +8 -0
- package/components/map3d/Map3D.js +29 -0
- package/components/map3d/Map3DLight.js +10 -0
- package/components/map3d/MapControls3D.js +20 -0
- package/components/map3d/MapExport3D.js +11 -0
- package/components/map3d/Measure3D.js +23 -0
- package/components/map3d/OverviewMap3D.js +9 -0
- package/components/map3d/SearchField3D.js +16 -0
- package/components/map3d/TopBar3D.js +7 -0
- package/components/map3d/View3DSwitcher.js +7 -0
- package/components/map3d/drawtool/CreateTool3D.js +9 -0
- package/components/map3d/drawtool/EditTool3D.js +9 -0
- package/components/map3d/drawtool/NumericInput3D.js +7 -0
- package/components/map3d/img/viewcone.svg +124 -0
- package/components/map3d/layers/VectorLayer3D.js +7 -0
- package/components/map3d/layers/WFSLayer3D.js +8 -0
- package/components/map3d/layers/WMSLayer3D.js +7 -0
- package/components/map3d/layers/WMTSLayer3D.js +9 -0
- package/components/map3d/layers/index.js +8 -0
- package/components/map3d/models/arrow.glb +0 -0
- package/components/map3d/models/pin.glb +0 -0
- package/components/map3d/slices/map3d.js +1 -0
- package/components/map3d/style/BottomBar3D.css +67 -0
- package/components/map3d/style/Compare3D.css +57 -0
- package/components/map3d/style/Draw3D.css +7 -0
- package/components/map3d/style/HideObjects3D.css +29 -0
- package/components/map3d/style/LayerTree3D.css +126 -0
- package/components/map3d/style/Map3D.css +42 -0
- package/components/map3d/style/Map3DLight.css +72 -0
- package/components/map3d/style/MapControls3D.css +56 -0
- package/components/map3d/style/MapExport3D.css +25 -0
- package/components/map3d/style/OverviewMap3D.css +37 -0
- package/components/map3d/style/SearchField3D.css +7 -0
- package/components/map3d/style/View3DSwitcher.css +27 -0
- package/components/map3d/utils/Tiles3DStyle.js +1 -0
- package/components/share/ShareLink.js +7 -0
- package/components/share/ShareQRCode.js +8 -0
- package/components/share/ShareSocials.js +9 -0
- package/components/share/style/ShareLink.css +13 -0
- package/components/share/style/ShareSocials.css +9 -0
- package/components/style/App.css +229 -0
- package/components/style/AppMenu.css +162 -0
- package/components/style/AttributeForm.css +57 -0
- package/components/style/AutoEditForm.css +64 -0
- package/components/style/DefaultColorScheme.css +60 -0
- package/components/style/EditUploadField.css +103 -0
- package/components/style/FullscreenSwitcher.css +25 -0
- package/components/style/Icon.css +26 -0
- package/components/style/IdentifyViewer.css +249 -0
- package/components/style/ImportLayer.css +28 -0
- package/components/style/LayerInfoWindow.css +46 -0
- package/components/style/LinkFeatureForm.css +48 -0
- package/components/style/NumericInputWindow.css +11 -0
- package/components/style/PickFeature.css +25 -0
- package/components/style/PluginsContainer.css +4 -0
- package/components/style/QtDesignerForm.css +225 -0
- package/components/style/ResizeableWindow.css +178 -0
- package/components/style/SearchBox.css +159 -0
- package/components/style/ServiceInfoWindow.css +34 -0
- package/components/style/SideBar.css +100 -0
- package/components/style/TaskBar.css +35 -0
- package/components/style/ThemeLayersListWindow.css +47 -0
- package/components/style/ThemeList.css +200 -0
- package/components/style/Toolbar.css +20 -0
- package/components/style/WindowManager.css +50 -0
- package/components/timeline/FixedTimeline.js +10 -0
- package/components/timeline/InfiniteTimeline.js +13 -0
- package/components/timeline/TimelineFeaturesSlider.js +10 -0
- package/components/timeline/style/FixedTimeline.css +76 -0
- package/components/timeline/style/InfiniteTimeline.css +94 -0
- package/components/timeline/style/TimelineFeaturesSlider.css +131 -0
- package/components/widgets/AccordeonWidget.js +7 -0
- package/components/widgets/ButtonBar.js +7 -0
- package/components/widgets/ColorButton.js +8 -0
- package/components/widgets/ComboBox.js +7 -0
- package/components/widgets/CopyButton.js +7 -0
- package/components/widgets/DateTimeInput.js +8 -0
- package/components/widgets/EditableSelect.js +8 -0
- package/components/widgets/FileSelector.js +9 -0
- package/components/widgets/Input.js +7 -0
- package/components/widgets/InputContainer.js +7 -0
- package/components/widgets/LayerCatalogWidget.js +3 -0
- package/components/widgets/MenuButton.js +1 -0
- package/components/widgets/ModalDialog.js +7 -0
- package/components/widgets/NavBar.js +7 -0
- package/components/widgets/NumberInput.js +9 -0
- package/components/widgets/PopupMenu.js +1 -0
- package/components/widgets/Primitives.js +7 -0
- package/components/widgets/ReCaptchaWidget.js +1 -0
- package/components/widgets/SearchWidget.js +7 -0
- package/components/widgets/Spinner.js +6 -0
- package/components/widgets/SuggestionInput.js +7 -0
- package/components/widgets/TextInput.js +7 -0
- package/components/widgets/ToggleSwitch.js +7 -0
- package/components/widgets/VectorLayerPicker.js +8 -0
- package/components/widgets/style/AccordeonWidget.css +22 -0
- package/components/widgets/style/ButtonBar.css +88 -0
- package/components/widgets/style/ColorButton.css +88 -0
- package/components/widgets/style/ComboBox.css +83 -0
- package/components/widgets/style/CopyButton.css +21 -0
- package/components/widgets/style/EditableSelect.css +47 -0
- package/components/widgets/style/FileSelector.css +14 -0
- package/components/widgets/style/InputContainer.css +34 -0
- package/components/widgets/style/LayerCatalogWidget.css +59 -0
- package/components/widgets/style/MenuButton.css +122 -0
- package/components/widgets/style/ModalDialog.css +50 -0
- package/components/widgets/style/NavBar.css +12 -0
- package/components/widgets/style/NumberInput.css +76 -0
- package/components/widgets/style/SearchWidget.css +43 -0
- package/components/widgets/style/Spinner.css +32 -0
- package/components/widgets/style/SuggestionInput.css +8 -0
- package/components/widgets/style/TextInput.css +94 -0
- package/components/widgets/style/ToggleSwitch.css +61 -0
- package/components/widgets/style/VectorLayerPicker.css +3 -0
- package/icons/2d.svg +70 -0
- package/icons/3d.svg +70 -0
- package/icons/3d2d.svg +92 -0
- package/icons/after.svg +76 -0
- package/icons/arrow-down.svg +60 -0
- package/icons/arrow-up.svg +60 -0
- package/icons/before.svg +76 -0
- package/icons/bglayer.svg +71 -0
- package/icons/bookmark.svg +170 -0
- package/icons/box.svg +63 -0
- package/icons/buffer.svg +67 -0
- package/icons/camera.svg +118 -0
- package/icons/catalog.svg +62 -0
- package/icons/checked.svg +80 -0
- package/icons/chevron-down.svg +60 -0
- package/icons/chevron-left.svg +59 -0
- package/icons/chevron-right.svg +60 -0
- package/icons/chevron-up.svg +60 -0
- package/icons/circle.svg +70 -0
- package/icons/clear.svg +62 -0
- package/icons/clock.svg +71 -0
- package/icons/cog.svg +60 -0
- package/icons/collapse.svg +73 -0
- package/icons/compare.svg +72 -0
- package/icons/cone.svg +58 -0
- package/icons/confirm.svg +62 -0
- package/icons/copy.svg +60 -0
- package/icons/cuboid.svg +58 -0
- package/icons/cyclomedia.svg +47 -0
- package/icons/cylinder.svg +58 -0
- package/icons/dataimport.svg +116 -0
- package/icons/detach.svg +79 -0
- package/icons/dock.svg +82 -0
- package/icons/dock_bottom.svg +82 -0
- package/icons/dock_left.svg +84 -0
- package/icons/dock_right.svg +84 -0
- package/icons/dock_top.svg +84 -0
- package/icons/draw.svg +78 -0
- package/icons/editdraw.svg +84 -0
- package/icons/edited.svg +78 -0
- package/icons/editing.svg +118 -0
- package/icons/ellipse.svg +72 -0
- package/icons/embed.svg +88 -0
- package/icons/expand.svg +73 -0
- package/icons/export.svg +126 -0
- package/icons/eye.svg +127 -0
- package/icons/featureform.svg +115 -0
- package/icons/fill.svg +62 -0
- package/icons/filter.svg +69 -0
- package/icons/folder-open.svg +60 -0
- package/icons/freehand.svg +82 -0
- package/icons/group.svg +76 -0
- package/icons/home.svg +60 -0
- package/icons/identify_radius.svg +71 -0
- package/icons/identify_region.svg +71 -0
- package/icons/import.svg +62 -0
- package/icons/info-sign.svg +60 -0
- package/icons/info.svg +80 -0
- package/icons/layers.svg +71 -0
- package/icons/light.svg +77 -0
- package/icons/line.svg +61 -0
- package/icons/line_buffer.svg +65 -0
- package/icons/link.svg +75 -0
- package/icons/list-alt.svg +111 -0
- package/icons/lock.svg +54 -0
- package/icons/login.svg +56 -0
- package/icons/logout.svg +56 -0
- package/icons/map3d.svg +51 -0
- package/icons/maximize.svg +84 -0
- package/icons/measure.svg +82 -0
- package/icons/measure_line.svg +87 -0
- package/icons/measure_polygon.svg +88 -0
- package/icons/menu-hamburger.svg +60 -0
- package/icons/minimize.svg +76 -0
- package/icons/minus-sign.svg +60 -0
- package/icons/minus.svg +61 -0
- package/icons/nav-end.svg +74 -0
- package/icons/nav-left.svg +74 -0
- package/icons/nav-right.svg +74 -0
- package/icons/nav-start.svg +73 -0
- package/icons/new.svg +84 -0
- package/icons/nodetool.svg +68 -0
- package/icons/numericinput.svg +86 -0
- package/icons/ok.svg +60 -0
- package/icons/open.svg +79 -0
- package/icons/open_link.svg +74 -0
- package/icons/paint.svg +75 -0
- package/icons/pen.svg +41 -0
- package/icons/person.svg +44 -0
- package/icons/pick.svg +67 -0
- package/icons/pick_point.svg +74 -0
- package/icons/pick_region.svg +71 -0
- package/icons/plus.svg +60 -0
- package/icons/point.svg +67 -0
- package/icons/point_buffer.svg +74 -0
- package/icons/polygon.svg +61 -0
- package/icons/print.svg +60 -0
- package/icons/pyramid.svg +58 -0
- package/icons/radio_checked.svg +78 -0
- package/icons/radio_tristate.svg +75 -0
- package/icons/radio_unchecked.svg +72 -0
- package/icons/rasterexport.svg +124 -0
- package/icons/rect.svg +63 -0
- package/icons/refresh.svg +44 -0
- package/icons/remove.svg +60 -0
- package/icons/report.svg +84 -0
- package/icons/routing-bicycle.svg +40 -0
- package/icons/routing-bus.svg +40 -0
- package/icons/routing-cablecar.svg +40 -0
- package/icons/routing-car.svg +40 -0
- package/icons/routing-ship.svg +40 -0
- package/icons/routing-train.svg +40 -0
- package/icons/routing-tram.svg +40 -0
- package/icons/routing-truck.svg +40 -0
- package/icons/routing-walking.svg +40 -0
- package/icons/routing.svg +68 -0
- package/icons/save.svg +190 -0
- package/icons/scale.svg +62 -0
- package/icons/screenshot.svg +60 -0
- package/icons/search.svg +60 -0
- package/icons/selectbox.svg +79 -0
- package/icons/share.svg +64 -0
- package/icons/snap_edge.svg +79 -0
- package/icons/snap_vertex.svg +79 -0
- package/icons/sphere.svg +58 -0
- package/icons/square.svg +68 -0
- package/icons/sync.svg +72 -0
- package/icons/text.svg +68 -0
- package/icons/themes.svg +81 -0
- package/icons/tilt-down.svg +67 -0
- package/icons/tilt-left.svg +48 -0
- package/icons/tilt-right.svg +48 -0
- package/icons/tilt-up.svg +67 -0
- package/icons/today.svg +45 -0
- package/icons/tools.svg +77 -0
- package/icons/transformtool.svg +74 -0
- package/icons/transparency.svg +132 -0
- package/icons/trash.svg +60 -0
- package/icons/tree_minus.svg +81 -0
- package/icons/tree_plus.svg +81 -0
- package/icons/triangle-down.svg +59 -0
- package/icons/triangle-left.svg +60 -0
- package/icons/triangle-right.svg +60 -0
- package/icons/triangle-up.svg +59 -0
- package/icons/tristate.svg +79 -0
- package/icons/unchecked.svg +74 -0
- package/icons/undock.svg +82 -0
- package/icons/undock_bottom.svg +82 -0
- package/icons/undock_left.svg +82 -0
- package/icons/undock_right.svg +84 -0
- package/icons/undock_top.svg +84 -0
- package/icons/unmaximize.svg +84 -0
- package/icons/unminimize.svg +76 -0
- package/icons/up-down-arrow.svg +66 -0
- package/icons/warning.svg +72 -0
- package/icons/wedge.svg +58 -0
- package/icons/zoom.svg +60 -0
- package/icons/zoomin.svg +71 -0
- package/icons/zoomout.svg +80 -0
- package/libs/openlayers.js +11 -0
- package/package.json +135 -0
- package/plugins/API.js +114 -0
- package/plugins/AttributeTable.js +25 -0
- package/plugins/Authentication.js +13 -0
- package/plugins/BackgroundSwitcher.js +10 -0
- package/plugins/Bookmark.js +13 -0
- package/plugins/BottomBar.js +10 -0
- package/plugins/CookiePopup.js +9 -0
- package/plugins/Cyclomedia.js +11 -0
- package/plugins/Editing.js +21 -0
- package/plugins/FeatureForm.js +21 -0
- package/plugins/FeatureSearch.js +11 -0
- package/plugins/GeometryDigitizer.js +43 -0
- package/plugins/HeightProfile.js +26 -0
- package/plugins/Help.js +11 -0
- package/plugins/HomeButton.js +9 -0
- package/plugins/Identify.js +18 -0
- package/plugins/LayerCatalog.js +45 -0
- package/plugins/LayerTree.js +15 -0
- package/plugins/LocateButton.js +10 -0
- package/plugins/Map.js +22 -0
- package/plugins/MapCompare.js +11 -0
- package/plugins/MapCopyright.js +11 -0
- package/plugins/MapExport.js +23 -0
- package/plugins/MapFilter.js +20 -0
- package/plugins/MapInfoTooltip.js +32 -0
- package/plugins/MapLegend.js +14 -0
- package/plugins/MapTip.js +15 -0
- package/plugins/Measure.js +10 -0
- package/plugins/NewsPopup.js +12 -0
- package/plugins/Panoramax.js +10 -0
- package/plugins/Portal.js +10 -0
- package/plugins/Print.js +22 -0
- package/plugins/ProcessNotifications.js +11 -0
- package/plugins/Redlining.js +12 -0
- package/plugins/Reports.js +15 -0
- package/plugins/Routing.js +23 -0
- package/plugins/ScratchDrawing.js +15 -0
- package/plugins/Settings.js +12 -0
- package/plugins/Share.js +11 -0
- package/plugins/StartupMarker.js +12 -0
- package/plugins/TaskButton.js +9 -0
- package/plugins/ThemeSwitcher.js +10 -0
- package/plugins/TimeManager.js +21 -0
- package/plugins/TopBar.js +13 -0
- package/plugins/ValueTool.js +11 -0
- package/plugins/View3D.js +34 -0
- package/plugins/ZoomButtons.js +11 -0
- package/plugins/map/EditingSupport.js +13 -0
- package/plugins/map/LocateSupport.js +14 -0
- package/plugins/map/MeasurementSupport.js +15 -0
- package/plugins/map/OverviewSupport.js +14 -0
- package/plugins/map/RedliningPickSupport.js +12 -0
- package/plugins/map/RedliningSupport.js +28 -0
- package/plugins/map/ScaleBarSupport.js +10 -0
- package/plugins/map/SnapInteraction.js +1 -0
- package/plugins/map/SnapSupport.js +7 -0
- package/plugins/map/SnappingSupport.js +23 -0
- package/plugins/map/style/OverviewSupport.css +42 -0
- package/plugins/map/style/ScaleBarSupport.css +18 -0
- package/plugins/map/style/SnappingSupport.css +33 -0
- package/plugins/redlining/RedliningBufferSupport.js +8 -0
- package/plugins/style/AttributeTable.css +220 -0
- package/plugins/style/Authentication.css +16 -0
- package/plugins/style/BackgroundSwitcher.css +99 -0
- package/plugins/style/Bookmark.css +62 -0
- package/plugins/style/BottomBar.css +53 -0
- package/plugins/style/Buttons.css +68 -0
- package/plugins/style/CookiePopup.css +24 -0
- package/plugins/style/Cyclomedia.css +66 -0
- package/plugins/style/Editing.css +40 -0
- package/plugins/style/FeatureForm.css +21 -0
- package/plugins/style/FeatureSearch.css +71 -0
- package/plugins/style/GeometryDigitizer.css +28 -0
- package/plugins/style/HeightProfile.css +26 -0
- package/plugins/style/Identify.css +4 -0
- package/plugins/style/LayerCatalog.css +8 -0
- package/plugins/style/LayerTree.css +316 -0
- package/plugins/style/Map.css +43 -0
- package/plugins/style/MapCompare.css +27 -0
- package/plugins/style/MapCopyright.css +17 -0
- package/plugins/style/MapExport.css +55 -0
- package/plugins/style/MapFilter.css +101 -0
- package/plugins/style/MapInfoTooltip.css +78 -0
- package/plugins/style/MapLegend.css +36 -0
- package/plugins/style/MapTip.css +22 -0
- package/plugins/style/Measure.css +23 -0
- package/plugins/style/NewsPopup.css +87 -0
- package/plugins/style/Panoramax.css +15 -0
- package/plugins/style/Portal.css +115 -0
- package/plugins/style/Print.css +116 -0
- package/plugins/style/ProcessNotifications.css +55 -0
- package/plugins/style/Redlining.css +101 -0
- package/plugins/style/Reports.css +11 -0
- package/plugins/style/Routing.css +243 -0
- package/plugins/style/ScratchDrawing.css +8 -0
- package/plugins/style/Settings.css +11 -0
- package/plugins/style/Share.css +59 -0
- package/plugins/style/ThemeSwitcher.css +7 -0
- package/plugins/style/TimeManager.css +91 -0
- package/plugins/style/TopBar.css +50 -0
- package/plugins/style/ValueTool.css +60 -0
- package/reducers/display.js +7 -0
- package/reducers/editing.js +8 -0
- package/reducers/index.js +7 -0
- package/reducers/layerinfo.js +7 -0
- package/reducers/layers.js +14 -0
- package/reducers/localConfig.js +8 -0
- package/reducers/locale.js +8 -0
- package/reducers/locate.js +8 -0
- package/reducers/map.js +11 -0
- package/reducers/measurement.js +8 -0
- package/reducers/processNotifications.js +7 -0
- package/reducers/redlining.js +7 -0
- package/reducers/redliningPick.js +7 -0
- package/reducers/serviceinfo.js +7 -0
- package/reducers/task.js +7 -0
- package/reducers/theme.js +7 -0
- package/reducers/windows.js +7 -0
- package/scripts/dist.sh +16 -0
- package/scripts/gen-plugin-docs.js +9 -0
- package/scripts/makeIconkit.js +7 -0
- package/scripts/package-commands.bat +8 -0
- package/scripts/package-commands.sh +22 -0
- package/scripts/themesConfig.js +48 -0
- package/scripts/themesConfig.py +659 -0
- package/scripts/translateui.sh +51 -0
- package/scripts/updateTranslations.js +17 -0
- package/scripts/wmts_config_generator.py +169 -0
- package/selectors/searchproviders.js +12 -0
- package/static/translations/bg-BG.json +709 -0
- package/static/translations/ca-ES.json +709 -0
- package/static/translations/cs-CZ.json +709 -0
- package/static/translations/de-CH.json +709 -0
- package/static/translations/de-DE.json +709 -0
- package/static/translations/en-US.json +709 -0
- package/static/translations/es-ES.json +709 -0
- package/static/translations/fi-FI.json +709 -0
- package/static/translations/fr-FR.json +709 -0
- package/static/translations/hu-HU.json +709 -0
- package/static/translations/it-IT.json +709 -0
- package/static/translations/ja-JP.json +709 -0
- package/static/translations/nl-NL.json +709 -0
- package/static/translations/no-NO.json +709 -0
- package/static/translations/pl-PL.json +709 -0
- package/static/translations/pt-BR.json +709 -0
- package/static/translations/pt-PT.json +709 -0
- package/static/translations/ro-RO.json +709 -0
- package/static/translations/ru-RU.json +709 -0
- package/static/translations/sv-SE.json +709 -0
- package/static/translations/tr-TR.json +709 -0
- package/static/translations/tsconfig.json +606 -0
- package/stores/StandardStore.js +8 -0
- package/utils/ConfigUtils.js +9 -0
- package/utils/CoordinatesUtils.js +29 -0
- package/utils/DxfUtils.js +10 -0
- package/utils/EditingInterface.js +67 -0
- package/utils/EditingUtils.js +11 -0
- package/utils/FeatureStyles.js +10 -0
- package/utils/IdentifyUtils.js +12 -0
- package/utils/ImageEditor.js +15 -0
- package/utils/LayerUtils.js +57 -0
- package/utils/LocaleUtils.js +9 -0
- package/utils/MapUtils.js +66 -0
- package/utils/MeasureUtils.js +9 -0
- package/utils/MiscUtils.js +15 -0
- package/utils/PermaLinkUtils.js +11 -0
- package/utils/ResourceRegistry.js +7 -0
- package/utils/RoutingInterface.js +12 -0
- package/utils/SearchProviders.js +19 -0
- package/utils/ServiceLayerUtils.js +20 -0
- package/utils/Signal.js +2 -0
- package/utils/ThemeUtils.js +12 -0
- package/utils/VectorLayerUtils.js +20 -0
- package/utils/expr_grammar/README.md +3 -0
- package/utils/expr_grammar/grammar.js +3 -0
- package/utils/expr_grammar/grammar.ne +118 -0
- package/utils/expr_grammar/test.js +13 -0
- package/utils/img/README.markers +1 -0
- package/utils/img/arrowhead.svg +4 -0
- package/utils/img/marker-icon.png +0 -0
- package/utils/img/measurehead.svg +4 -0
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
div.cyclomedia-body {
|
|
2
|
+
height: calc(100% + 0.5em);
|
|
3
|
+
position: relative;
|
|
4
|
+
display: flex;
|
|
5
|
+
flex-direction: column;
|
|
6
|
+
margin: -0.25em;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
div.cyclomedia-body-overlay {
|
|
10
|
+
position: absolute;
|
|
11
|
+
left: 0;
|
|
12
|
+
right: 0;
|
|
13
|
+
top: 0;
|
|
14
|
+
bottom: 0;
|
|
15
|
+
display: flex;
|
|
16
|
+
align-items: center;
|
|
17
|
+
justify-content: center;
|
|
18
|
+
background-color: rgba(200, 200, 200, 0.9);
|
|
19
|
+
z-index: 2;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
div.cyclomedia-body-overlay > div.spinner {
|
|
23
|
+
width: 4em;
|
|
24
|
+
height: 4em;
|
|
25
|
+
margin-right: 1em;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
div.cyclomedia-scale-hint {
|
|
29
|
+
flex: 0 0 auto;
|
|
30
|
+
background-color: #8f8fff;
|
|
31
|
+
color: white;
|
|
32
|
+
font-weight: bold;
|
|
33
|
+
padding: 0.25em;
|
|
34
|
+
text-align: center;
|
|
35
|
+
z-index: 3;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
iframe.cyclomedia-frame {
|
|
39
|
+
width: 100%;
|
|
40
|
+
flex: 1 1 auto;
|
|
41
|
+
border: none;
|
|
42
|
+
background-color: white;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
div.cyclomedia-login {
|
|
46
|
+
background-color: var(--container-bg-color);
|
|
47
|
+
padding: 0.5em;
|
|
48
|
+
border: 1px solid var(--border-color);
|
|
49
|
+
width: 90%;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
div.cyclomedia-login table {
|
|
53
|
+
width: 100%
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
div.cyclomedia-login table input {
|
|
57
|
+
width: 100%;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
div.cyclomedia-login button {
|
|
61
|
+
width: 100%;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
td.cyclomedia-login-message {
|
|
65
|
+
font-style: italic;
|
|
66
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
#Editing div.editing-body {
|
|
2
|
+
padding: 0.25em;
|
|
3
|
+
position: relative;
|
|
4
|
+
/* titlebar: 2.5em */
|
|
5
|
+
max-height: calc(100vh - 2.5em - var(--topbar-height) - var(--bottombar-height)); /* viewport - sidebar_titlebar - topbar - bottombar*/
|
|
6
|
+
max-height: calc(var(--vh, 1vh) * 100 - 2.5em - var(--topbar-height) - var(--bottombar-height)); /* viewport - sidebar_titlebar - topbar - bottombar*/
|
|
7
|
+
display: flex;
|
|
8
|
+
flex-direction: column;
|
|
9
|
+
height: 100%;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
#Editing .editing-minimize-maximize {
|
|
13
|
+
margin-left: 1em;
|
|
14
|
+
cursor: pointer;
|
|
15
|
+
padding: 0.25em;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
#Editing div.editing-body > div.editing-layer-selection,
|
|
19
|
+
#Editing div.editing-body > div.editing-feature-selection,
|
|
20
|
+
#Editing div.editing-body > div.ButtonBar {
|
|
21
|
+
flex: 0 0 auto;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
#Editing div.editing-body > div.AttributeForm {
|
|
25
|
+
margin-top: 0.5em;
|
|
26
|
+
padding-top: 0.5em;
|
|
27
|
+
border-top: 1px solid var(--border-color);
|
|
28
|
+
flex: 1 1 auto;
|
|
29
|
+
overflow: hidden;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
#Editing select.editing-layer-select,
|
|
33
|
+
#Editing select.editing-feature-select {
|
|
34
|
+
width: 100%;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
#Editing select.editing-layer-select:disabled,
|
|
38
|
+
#Editing select.editing-feature-select:disabled {
|
|
39
|
+
cursor: not-allowed;
|
|
40
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
div.feature-query-body {
|
|
2
|
+
display: flex;
|
|
3
|
+
flex-direction: column;
|
|
4
|
+
height: 100%;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
div.feature-query-body div.feature-query-selection {
|
|
8
|
+
flex: 0 0 auto;
|
|
9
|
+
padding-bottom: 0.25em;
|
|
10
|
+
border-bottom: 1px solid var(--border-color);
|
|
11
|
+
margin-bottom: 0.25em;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
div.feature-query-body div.feature-query-selection > select {
|
|
15
|
+
width: 100%;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
div.feature-query-body div.AttributeForm {
|
|
19
|
+
flex: 1 1 auto;
|
|
20
|
+
overflow: auto;
|
|
21
|
+
}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
div#FeatureSearch div.sidebar-body {
|
|
2
|
+
overflow: hidden;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
div.feature-search-body {
|
|
6
|
+
/* titlebar: 2.5em */
|
|
7
|
+
max-height: calc(100vh - 2.5em - var(--topbar-height) - var(--bottombar-height)); /* viewport - sidebar_titlebar - topbar - bottombar*/
|
|
8
|
+
max-height: calc(var(--vh, 1vh) * 100 - 2.5em - var(--topbar-height) - var(--bottombar-height)); /* viewport - sidebar_titlebar - topbar - bottombar*/
|
|
9
|
+
|
|
10
|
+
padding: 0.25em;
|
|
11
|
+
display: flex;
|
|
12
|
+
flex-direction: column;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
div.feature-search-selection {
|
|
16
|
+
flex: 0 0 auto;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
div.feature-search-selection > select {
|
|
20
|
+
width: 100%;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
form.feature-search-form {
|
|
24
|
+
flex: 0 0 auto;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
form.feature-search-form > fieldset {
|
|
28
|
+
margin: 0;
|
|
29
|
+
padding: 0.25em;
|
|
30
|
+
border-color: var(--border-color);
|
|
31
|
+
border-style: solid;
|
|
32
|
+
border-width: 0 1px 0 1px;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
div.feature-search-form-descr {
|
|
36
|
+
padding: 0.25em 0;
|
|
37
|
+
border-bottom: 1px solid var(--border-color);
|
|
38
|
+
margin-bottom: 0.25em;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
form.feature-search-form > fieldset table {
|
|
42
|
+
width: 100%;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
form.feature-search-form > fieldset td > input,
|
|
46
|
+
form.feature-search-form > fieldset td > select {
|
|
47
|
+
width: 100%;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
div.feature-search-bar > button {
|
|
51
|
+
width: 100%;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
div.feature-search-bar > button > div.Spinner {
|
|
55
|
+
width: 2em;
|
|
56
|
+
height: 2em;
|
|
57
|
+
margin-right: 1em;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
div.feature-search-results {
|
|
61
|
+
flex: 1 1 auto;
|
|
62
|
+
overflow-y: auto;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
div.feature-search-noresults {
|
|
66
|
+
font-style: italic;
|
|
67
|
+
padding: 0.25em;
|
|
68
|
+
margin-top: 0.25em;
|
|
69
|
+
border: 1px solid var(--border-color);
|
|
70
|
+
color: var(--text-color-disabled);
|
|
71
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
div.geomdigitizer-output-window-body {
|
|
2
|
+
width: 100%;
|
|
3
|
+
height: 100%;
|
|
4
|
+
position: relative;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
div.geomdigitizer-output-window-body > iframe {
|
|
8
|
+
border: 0;
|
|
9
|
+
width: 100%;
|
|
10
|
+
height: 100%;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
span.geomdigitizer-output-window-wait {
|
|
14
|
+
position: absolute;
|
|
15
|
+
top: 0;
|
|
16
|
+
left: 0;
|
|
17
|
+
background-color: rgba(255, 255, 255, 0.75);
|
|
18
|
+
border-radius: 0.5em;
|
|
19
|
+
padding: 0.5em;
|
|
20
|
+
display: flex;
|
|
21
|
+
align-items: center;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
span.geomdigitizer-output-window-wait > div.spinner {
|
|
25
|
+
width: 1.25em;
|
|
26
|
+
height: 1.25em;
|
|
27
|
+
margin-right: 0.5em;
|
|
28
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
div.height-profile-chart-container {
|
|
2
|
+
height: 100%;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
div.height-profile-loading-indicator {
|
|
6
|
+
display: flex;
|
|
7
|
+
align-items: center;
|
|
8
|
+
justify-content: center;
|
|
9
|
+
padding-left: 0.5em;
|
|
10
|
+
padding-bottom: 0.5em;
|
|
11
|
+
height: 100%;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
div.height-profile-loading-indicator > div.spinner {
|
|
15
|
+
width: 1.5em;
|
|
16
|
+
height: 1.5em;
|
|
17
|
+
margin-right: 0.25em;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
div.height-profile-error {
|
|
21
|
+
height: 100%;
|
|
22
|
+
display: flex;
|
|
23
|
+
align-items: center;
|
|
24
|
+
justify-content: center;
|
|
25
|
+
color: red;
|
|
26
|
+
}
|
|
@@ -0,0 +1,316 @@
|
|
|
1
|
+
#LayerTree span.layertree-tree-visibility {
|
|
2
|
+
margin: 0 0.5em;
|
|
3
|
+
color: var(--titlebar-bg-color);
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
#LayerTree span.layertree-tree-visibility:before {
|
|
7
|
+
background-color: var(--titlebar-text-color);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
#LayerTree span.layertree-print-legend,
|
|
11
|
+
#LayerTree span.layertree-visible-filter,
|
|
12
|
+
#LayerTree span.layertree-delete-legend,
|
|
13
|
+
#LayerTree span.layertree-theme-metadata {
|
|
14
|
+
margin-left: 0.5em;
|
|
15
|
+
padding: 0.25em;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
#LayerTree span.layertree-print-legend:hover,
|
|
19
|
+
#LayerTree span.layertree-visible-filter:hover,
|
|
20
|
+
#LayerTree span.layertree-delete-legend:hover,
|
|
21
|
+
#LayerTree span.layertree-theme-metadata:hover {
|
|
22
|
+
background-color: var(--titlebar-text-color);
|
|
23
|
+
color: var(--titlebar-bg-color);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
#LayerTree span.layertree-visible-filter-active {
|
|
27
|
+
background-color: var(--titlebar-text-color);
|
|
28
|
+
color: var(--titlebar-bg-color);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
/* https://github.com/philipwalton/flexbugs/issues/216 */
|
|
32
|
+
#LayerTree div.layertree-container-wrapper {
|
|
33
|
+
display: flex;
|
|
34
|
+
flex-direction: row;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
#LayerTree div.layertree-container {
|
|
38
|
+
flex: 0 0 100%;
|
|
39
|
+
max-width: 100%;
|
|
40
|
+
display: flex;
|
|
41
|
+
flex-direction: column;
|
|
42
|
+
/* titlebar: 2.5em */
|
|
43
|
+
max-height: calc(100vh - 2.5em - var(--topbar-height) - var(--bottombar-height)); /* viewport - sidebar_titlebar - topbar - bottombar*/
|
|
44
|
+
max-height: calc(var(--vh, 1vh) * 100 - 2.5em - var(--topbar-height) - var(--bottombar-height)); /* viewport - sidebar_titlebar - topbar - bottombar*/
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
#LayerTree div.layertree-tree {
|
|
48
|
+
min-height: 5em;
|
|
49
|
+
flex: 0 1 auto;
|
|
50
|
+
overflow-y: auto;
|
|
51
|
+
margin-right: 0.25em;
|
|
52
|
+
-webkit-user-select: none;
|
|
53
|
+
user-select: none;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
#LayerTree div.layertree-tree .drop-ghost {
|
|
57
|
+
outline: 1px solid var(--color-active);
|
|
58
|
+
background-color: var(--list-bg-color);
|
|
59
|
+
color: var(--text-color);
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
#LayerTree div.layertree-option {
|
|
63
|
+
flex: 0 0 auto;
|
|
64
|
+
height: 2.25em;
|
|
65
|
+
padding: 0.25em 0.5em 0.25em 0.5em;
|
|
66
|
+
border-top: 1px solid var(--border-color);
|
|
67
|
+
display: flex;
|
|
68
|
+
align-items: center;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
#LayerTree div.layertree-option > span.icon {
|
|
72
|
+
margin-right: 0.5em;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
#LayerTree div.layertree-option > span {
|
|
76
|
+
cursor: pointer;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
#LayerTree div.layertree-item-container {
|
|
80
|
+
margin-left: 0.5em;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
#LayerTree div.layertree-item {
|
|
84
|
+
display: flex;
|
|
85
|
+
align-items: center;
|
|
86
|
+
height: 1.75em;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
#LayerTree div.layertree-item-disabled > span.layertree-item-title {
|
|
90
|
+
color: var(--text-color-disabled);
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
#LayerTree div.layertree-item-outsidescalerange > span.layertree-item-title {
|
|
94
|
+
font-style: italic;
|
|
95
|
+
color: var(--text-color-disabled);
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
#LayerTree div.layertree-item-separator {
|
|
99
|
+
font-weight: bold;
|
|
100
|
+
border-bottom: 1px solid var(--color-active);
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
#LayerTree div.layertree-item-separator > input {
|
|
104
|
+
border: none;
|
|
105
|
+
background-color: transparent;
|
|
106
|
+
width: 100%;
|
|
107
|
+
font-weight: bold;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
#LayerTree div.layertree-item-separator > input:focus {
|
|
111
|
+
background-color: var(--input-bg-color);
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
#LayerTree span.layertree-item-expander {
|
|
115
|
+
margin-right: 0.25em;
|
|
116
|
+
flex: 0 0 1em;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
#LayerTree div.layertree-item > div.spinner {
|
|
120
|
+
width: 1em;
|
|
121
|
+
height: 1em;
|
|
122
|
+
flex: 0 0 auto;
|
|
123
|
+
margin-right: 0.5em;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
#LayerTree span.layertree-item-checkbox {
|
|
127
|
+
margin-right: 0.5em;
|
|
128
|
+
flex: 0 0 auto;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
#LayerTree img.layertree-item-legend-thumbnail {
|
|
132
|
+
height: 1.5em;
|
|
133
|
+
width: auto;
|
|
134
|
+
max-width: 2em;
|
|
135
|
+
margin-right: 0.5em;
|
|
136
|
+
border: 1px solid var(--border-color);
|
|
137
|
+
background-color: white;
|
|
138
|
+
flex: 0 0 auto;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
#LayerTree span.layertree-item-legend-coloricon {
|
|
142
|
+
display: inline-block;
|
|
143
|
+
height: 1.5em;
|
|
144
|
+
width: 1.5em;
|
|
145
|
+
margin-right: 0.5em;
|
|
146
|
+
border: 1px solid var(--border-color);
|
|
147
|
+
flex: 0 0 auto;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
img.layertree-item-legend-tooltip {
|
|
151
|
+
position: absolute;
|
|
152
|
+
z-index: 6;
|
|
153
|
+
box-shadow: 0px 2px 5px rgba(136, 136, 136, 0.5);
|
|
154
|
+
border-radius: 0.5em;
|
|
155
|
+
border: 1px solid var(--border-color);
|
|
156
|
+
margin-left: 1px;
|
|
157
|
+
padding: 0.25em;
|
|
158
|
+
background-color: white;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
#LayerTree span.layertree-item-title {
|
|
162
|
+
white-space: nowrap;
|
|
163
|
+
overflow: hidden;
|
|
164
|
+
text-overflow: ellipsis;
|
|
165
|
+
flex: 0 1 auto;
|
|
166
|
+
cursor: pointer;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
#LayerTree div.layertree-item-noresults {
|
|
170
|
+
color: gray;
|
|
171
|
+
font-size: small;
|
|
172
|
+
font-style: italic;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
#LayerTree span.layertree-item-queryable {
|
|
176
|
+
margin-left: 0.25em;
|
|
177
|
+
color: var(--border-color);
|
|
178
|
+
font-size: xx-small;
|
|
179
|
+
vertical-align: top;
|
|
180
|
+
flex: 0 0 auto;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
#LayerTree span.layertree-item-identifyable {
|
|
184
|
+
margin-left: 0.25em;
|
|
185
|
+
font-size: small;
|
|
186
|
+
vertical-align: top;
|
|
187
|
+
flex: 0 0 auto;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
#LayerTree span.layertree-item-identifyable-unchecked {
|
|
191
|
+
color: var(--border-color);
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
#LayerTree span.layertree-item-identifyable-checked {
|
|
195
|
+
color: var(--color-active);
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
#LayerTree span.layertree-item-identifyable-tristate {
|
|
199
|
+
color: var(--text-color);
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
#LayerTree span.layertree-item-spacer {
|
|
203
|
+
flex: 1 1 auto;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
#LayerTree span.layertree-item-remove {
|
|
207
|
+
text-align: center;
|
|
208
|
+
width: 1.75em;
|
|
209
|
+
flex: 0 0 auto;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
#LayerTree span.layertree-item-remove:hover {
|
|
213
|
+
color: red;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
#LayerTree span.layertree-item-menubutton {
|
|
217
|
+
text-align: center;
|
|
218
|
+
width: 1.75em;
|
|
219
|
+
flex: 0 0 auto;
|
|
220
|
+
height: 100%;
|
|
221
|
+
display: flex;
|
|
222
|
+
justify-content: center;
|
|
223
|
+
align-items: center;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
#LayerTree span.layertree-item-menubutton-active {
|
|
227
|
+
background-color: var(--color-active);
|
|
228
|
+
color: white;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
#LayerTree div.layertree-item-optionsmenu {
|
|
232
|
+
margin-left: 1em;
|
|
233
|
+
height: 1.75em;
|
|
234
|
+
display: flex;
|
|
235
|
+
align-items: center;
|
|
236
|
+
border: 1px solid var(--border-color);
|
|
237
|
+
background-color: var(--input-bg-color);
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
#LayerTree div.layertree-item-optionsmenu > span.icon {
|
|
241
|
+
flex: 0 0 auto;
|
|
242
|
+
width: 1.75em;
|
|
243
|
+
text-align: center;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
#LayerTree input.layertree-item-transparency-slider {
|
|
247
|
+
flex: 1 1 auto;
|
|
248
|
+
font-size: small;
|
|
249
|
+
min-width: 0;
|
|
250
|
+
max-width: none;
|
|
251
|
+
width: 1000em; /* exagerated value */
|
|
252
|
+
margin: 0 0.25em;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
#LayerTree div.layertree-item-stylemenu {
|
|
256
|
+
margin-left: 1em;
|
|
257
|
+
border: 1px solid var(--border-color);
|
|
258
|
+
background-color: var(--input-bg-color);
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
#LayerTree div.layertree-item-stylemenu > div {
|
|
262
|
+
padding: 0.25em;
|
|
263
|
+
display: flex;
|
|
264
|
+
align-items: center;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
#LayerTree div.layertree-item-stylemenu > div > span.icon {
|
|
268
|
+
margin-right: 0.25em;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
#LayerTree div.layertree-item-stylemenu > div > div {
|
|
272
|
+
flex: 1 1 auto;
|
|
273
|
+
overflow: hidden;
|
|
274
|
+
text-overflow: ellipsis;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
|
|
278
|
+
#LayerTree div.layertree-item-addsep {
|
|
279
|
+
border-top: 2px solid transparent;
|
|
280
|
+
border-bottom: 4px solid transparent;
|
|
281
|
+
margin-bottom: -6px;
|
|
282
|
+
position: relative;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
#LayerTree div.layertree-item-addsep:hover {
|
|
286
|
+
border-top: 2px solid var(--color-active);
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
div.layertree-legend-print-body {
|
|
290
|
+
height: 100%;
|
|
291
|
+
display: flex;
|
|
292
|
+
flex-direction: column;
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
div.layertree-legend-print-body > iframe {
|
|
296
|
+
border: 0;
|
|
297
|
+
background-color: white;
|
|
298
|
+
width: 100%;
|
|
299
|
+
height: 100%;
|
|
300
|
+
flex: 1 1 auto;
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
div.layertree-legend-print-body-buttonbar {
|
|
304
|
+
border-top: 1px solid var(--border-color);
|
|
305
|
+
flex: 0 0 auto;
|
|
306
|
+
text-align: center;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
div.layertree-legend-print-body-buttonbar > button {
|
|
310
|
+
margin: 0.5em;
|
|
311
|
+
padding: 0.5em;
|
|
312
|
+
background-color: var(--titlebar-bg-color);
|
|
313
|
+
color: white;
|
|
314
|
+
font-weight: bold;
|
|
315
|
+
border: 1px solid var(--border-color);
|
|
316
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
div#map {
|
|
2
|
+
position: absolute;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
/* Move and re-style rotation reset button */
|
|
6
|
+
div.ol-rotate {
|
|
7
|
+
padding: 0;
|
|
8
|
+
top: 4em!important;
|
|
9
|
+
right: 0.5em!important;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
div.ol-rotate button {
|
|
13
|
+
font-size: 1.25em!important;
|
|
14
|
+
background-color: var(--map-button-bg-color)!important;
|
|
15
|
+
color: var(--map-button-text-color)!important;
|
|
16
|
+
cursor: pointer;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
div.ol-overlaycontainer-stopevent {
|
|
20
|
+
z-index: 101!important;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
span.map-loading-indicator {
|
|
24
|
+
display: flex;
|
|
25
|
+
align-items: center;
|
|
26
|
+
opacity: 0;
|
|
27
|
+
transition: opacity 0.5s;
|
|
28
|
+
color: var(--panel-text-color);
|
|
29
|
+
background-color: var(--panel-bg-color);
|
|
30
|
+
box-shadow: 0 -2px 4px rgba(136, 136, 136, 0.5);
|
|
31
|
+
position: absolute;
|
|
32
|
+
bottom: 2.7em;
|
|
33
|
+
left: 0.25em;
|
|
34
|
+
padding: 0.25em;
|
|
35
|
+
border-radius: 0.25em;
|
|
36
|
+
font-size: small;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
span.map-loading-indicator > div.spinner {
|
|
40
|
+
width: 1.5em;
|
|
41
|
+
height: 1.5em;
|
|
42
|
+
margin-right: 0.25em;
|
|
43
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
#MapCompare {
|
|
2
|
+
position: fixed;
|
|
3
|
+
background-color: var(--map-button-bg-color);
|
|
4
|
+
width: 0.25em;
|
|
5
|
+
height: 100%;
|
|
6
|
+
margin-left: -0.125em;
|
|
7
|
+
top: 0;
|
|
8
|
+
cursor: ew-resize;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
#MapCompare span.map-compare-handle {
|
|
12
|
+
position: absolute;
|
|
13
|
+
top: calc(50% - 3em);
|
|
14
|
+
height: 3em;
|
|
15
|
+
width: 3em;
|
|
16
|
+
left: -1.375em;
|
|
17
|
+
background-color: var(--map-button-bg-color);
|
|
18
|
+
display: flex;
|
|
19
|
+
align-items: center;
|
|
20
|
+
border-radius: 1.5em;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
#MapCompare span.map-compare-handle-icon {
|
|
24
|
+
flex: 0 0 1.5em;
|
|
25
|
+
color: var(--map-button-text-color);
|
|
26
|
+
text-align: center;
|
|
27
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
#MapCopyright {
|
|
2
|
+
position: absolute;
|
|
3
|
+
background-color: var(--panel-bg-color);
|
|
4
|
+
color: var(--panel-text-color);
|
|
5
|
+
box-shadow: 0 0 4px rgba(136, 136, 136, 0.5);
|
|
6
|
+
backdrop-filter: blur(3px);
|
|
7
|
+
padding: 0.5em 0;
|
|
8
|
+
font-size: x-small;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
#MapCopyright > span {
|
|
12
|
+
padding: 0 0.5em;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
#MapCopyright span:not(:first-child) {
|
|
16
|
+
border-left: 1px solid var(--panel-text-color);
|
|
17
|
+
}
|