Files
nodeMap/states/mapLayersState.js
2024-04-23 09:03:31 +02:00

25 lines
576 B
JavaScript

// 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
show_TALAS: true,
show_ECI: true,
// show_ULAF: false,
show_GSMModem: true,
show_CiscoRouter: true,
show_WAGO: true,
show_Siemens: true,
show_OTDR: true,
show_WDM: true,
show_GMA: true,
show_Messstellen: true,
show_TALASICL: true,
show_DAUZ: true,
show_SMSFunkmodem: true,
show_Sonstige: true,
},
});