TALAS Checkbox zum ein- und ausblenden von Markers auf dem Map

This commit is contained in:
ISA
2024-04-25 07:46:20 +02:00
parent b218706845
commit a4a13ea67f
6 changed files with 250 additions and 672 deletions

7
store/gisStationState.js Normal file
View File

@@ -0,0 +1,7 @@
// Pfad: store/gisStationState.js
import { atom } from "recoil";
export const gisStationsStaticDistrictState = atom({
key: "gisStationsStaticDistrict", // Eindeutiger Schlüssel (innerhalb des Projekts)
default: [], // Standardwert (Anfangszustand)
});

7
store/gisSystemState.js Normal file
View File

@@ -0,0 +1,7 @@
// Pfad: store/gisStationState.js
import { atom } from "recoil";
export const gisSystemStaticState = atom({
key: "gisSystemStatic", // Eindeutiger Schlüssel (innerhalb des Projekts)
default: [], // Standardwert (Anfangszustand)
});

24
store/mapLayersState.js Normal file
View File

@@ -0,0 +1,24 @@
// store/mapLayersState.js
import { atom } from "recoil";
export const mapLayersState = atom({
key: "mapLayersState", // Eindeutiger Schlüssel für das Atom
default: {
// Standardwerte für jeden Layer
TALAS: true,
ECI: false,
ULAF: false,
GSMModem: false,
CiscoRouter: false,
WAGO: false,
Siemens: false,
OTDR: false,
WDM: false,
GMA: false,
Messstellen: false,
TALASICL: false,
DAUZ: false,
SMSFunkmodem: false,
Sonstige: false,
},
});