diff --git a/.env.development b/.env.development index a3fa228ec..d1a553a6f 100644 --- a/.env.development +++ b/.env.development @@ -23,4 +23,4 @@ NEXT_PUBLIC_USE_MOCKS=true # z.B. http://10.10.0.13/xyz/index.aspx -> basePath in config.json auf /xyz setzen # basePath wird jetzt in public/config.json gepflegt # App-Versionsnummer -NEXT_PUBLIC_APP_VERSION=1.1.375 +NEXT_PUBLIC_APP_VERSION=1.1.376 diff --git a/.env.production b/.env.production index 4d2bd2239..9d9c11ead 100644 --- a/.env.production +++ b/.env.production @@ -24,4 +24,4 @@ NEXT_PUBLIC_USE_MOCKS=false # basePath wird jetzt in public/config.json gepflegt # App-Versionsnummer -NEXT_PUBLIC_APP_VERSION=1.1.375 +NEXT_PUBLIC_APP_VERSION=1.1.376 diff --git a/components/icons/material-symbols/MinusIcon.js b/components/icons/material-symbols/MinusIcon.js new file mode 100644 index 000000000..ed671bc67 --- /dev/null +++ b/components/icons/material-symbols/MinusIcon.js @@ -0,0 +1,14 @@ +const MinusIcon = ({ className = "h-8 w-8" }) => ( + +); + +export default MinusIcon; diff --git a/components/icons/material-symbols/PlusIcon.js b/components/icons/material-symbols/PlusIcon.js new file mode 100644 index 000000000..ee8aab1b7 --- /dev/null +++ b/components/icons/material-symbols/PlusIcon.js @@ -0,0 +1,14 @@ +const PlusIcon = ({ className = "h-8 w-8" }) => ( + +); + +export default PlusIcon; diff --git a/components/mainComponent/MapComponent.js b/components/mainComponent/MapComponent.js index 11134d82a..6be439ede 100644 --- a/components/mainComponent/MapComponent.js +++ b/components/mainComponent/MapComponent.js @@ -15,6 +15,8 @@ import InfoIcon from "@/components/icons/material-symbols/InfoIcon"; import AlarmIcon from "@/components/icons/material-symbols/AlarmIcon"; import MapMarkerIcon from "@/components/icons/material-symbols/MapMarkerIcon"; import ExpandIcon from "@/components/icons/material-symbols/ExpandIcon"; +import PlusIcon from "@/components/icons/material-symbols/PlusIcon"; +import MinusIcon from "@/components/icons/material-symbols/MinusIcon"; import PoiUpdateModal from "@/components/pois/poiUpdateModal/PoiUpdateModal.js"; import { ToastContainer, toast } from "react-toastify"; import plusRoundIcon from "../icons/devices/overlapping/PlusRoundIcon.js"; @@ -1266,6 +1268,27 @@ const MapComponent = ({ locations, onLocationUpdate, lineCoordinates }) => { /> + {/* Custom Zoom Controls bottom-right, styled in littwin-blue to match app icons */} +