From ab84420cd49e291a09f1e6eb8f81b1da534c2424 Mon Sep 17 00:00:00 2001 From: asefubeierl Date: Wed, 18 Dec 2024 17:09:07 +0100 Subject: [PATCH 1/5] feat: adds Map Toolbar to the gis-client --- src/App.tsx | 2 + src/components/MapToolbar/index.less | 21 ++++++ src/components/MapToolbar/index.tsx | 105 +++++++++++++++++++++++++++ 3 files changed, 128 insertions(+) create mode 100644 src/components/MapToolbar/index.less create mode 100644 src/components/MapToolbar/index.tsx diff --git a/src/App.tsx b/src/App.tsx index 1b5f65d89..84688b3e3 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -9,6 +9,7 @@ import EditFeatureDrawer from './components/EditFeatureDrawer'; import Footer from './components/Footer'; import Header from './components/Header'; import LayerDetailsModal from './components/LayerDetailsModal'; +import MapToolbar from './components/MapToolbar'; import StylingDrawer from './components/StylingDrawer'; import ToolMenu from './components/ToolMenu'; import UploadDataModal from './components/UploadDataModal'; @@ -41,6 +42,7 @@ export const App: React.FC = ({
+