polylines tooltip content

This commit is contained in:
ISA
2024-08-10 10:32:37 +02:00
parent b1f7b700ca
commit b7116a1e6f
142 changed files with 14451 additions and 4281 deletions

View File

@@ -1,4 +1,4 @@
// Pfad: store/atoms/gisStationState.js
// Pfad: store/atoms/gisSystemtate.js
import { atom } from "recoil";
export const gisSystemStaticState = atom({

View File

@@ -0,0 +1,7 @@
// store/atoms/poiDeviceNameState.js
import { atom } from "recoil";
export const poiDeviceNameState = atom({
key: "poiDeviceNameState",
default: "",
});

View File

@@ -0,0 +1,8 @@
// /store/atoms/poiLayerVisibleState.js
// Recoil atom for the visibility of the POI layer
import { atom } from "recoil";
export const poiLayerVisibleState = atom({
key: "poiLayerVisibleState",
default: true,
});