This commit is contained in:
ISA
2025-05-28 08:04:34 +02:00
parent 97fbb6fdc1
commit 5f0133d638
107 changed files with 1446 additions and 454 deletions

View File

@@ -1,18 +1,25 @@
# 🏙️ gisStationsStaticDistrictSlice
<!-- /docs/redux/slices/webservice/gisStationsStaticDistrictSlice.md -->
Verwaltet statische Daten für GIS-Bezirksstationen.
# 🧩 gisStationsStaticDistrictSlice.js
## 🔧 Pfad
`/redux/slices/webService/gisStationsStaticDistrictSlice.js`
Lädt und speichert statische Standortdaten (z.B. Koordinaten) der Stationen im aktuellen Bezirk.
## 📦 Initial State
## Zustand
```ts
```js
{
data: [],
status: "idle",
error: null
data: { Points: [] },
status: "idle" | "loading" | "succeeded" | "failed",
error: string | null
}
```
## 🔁 Thunk: `fetchGisStationsStaticDistrictFromWebService`
## Thunk
- `fetchGisStationsStaticDistrictThunk()`
## Selector
```js
selectGisStationsStaticDistrict = (state) => state.gisStationsStaticDistrict.data
```