TALAS als separater layerGroup

This commit is contained in:
2024-04-22 20:42:34 +02:00
parent 1486657e20
commit dfb1a9cedc
9 changed files with 1408 additions and 32 deletions

View File

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

7
states/gisSystemState.js Normal file
View File

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

24
states/mapLayersState.js Normal file
View File

@@ -0,0 +1,24 @@
// states/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: false,
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,
},
});