docs
This commit is contained in:
@@ -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
|
||||
```
|
||||
Reference in New Issue
Block a user