30 lines
555 B
Markdown
30 lines
555 B
Markdown
<!-- /docs/redux/slices/webservice/gisStationsStaticDistrictSlice.md -->
|
||
|
||
# 🧩 gisStationsStaticDistrictSlice.js
|
||
|
||
Lädt und speichert statische Standortdaten (z. B. Koordinaten) der Stationen im aktuellen Bezirk.
|
||
|
||
## Zustand
|
||
|
||
```js
|
||
{
|
||
data: { Points: [] },
|
||
status: "idle" | "loading" | "succeeded" | "failed",
|
||
error: string | null
|
||
}
|
||
```
|
||
|
||
## Thunk
|
||
|
||
- `fetchGisStationsStaticDistrictThunk()`
|
||
|
||
## Selector
|
||
|
||
```js
|
||
selectGisStationsStaticDistrict = state => state.gisStationsStaticDistrict.data;
|
||
```
|
||
|
||
---
|
||
|
||
[Zurück zur Übersicht](../../../README.md)
|