TALAS Checkbox zum ein- und ausblenden von Markers auf dem Map
This commit is contained in:
7
store/gisStationState.js
Normal file
7
store/gisStationState.js
Normal 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
7
store/gisSystemState.js
Normal 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
24
store/mapLayersState.js
Normal 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,
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user