Files
windwiderstand/src/lib/windkarte.ts
T
Peter Meier 940b9beb7f
Deploy / verify (push) Successful in 1m7s
Deploy / deploy (push) Successful in 1m19s
feat(windkarte): stellungnahmeUrl-Feld + Einwendung-erstellen-Button im Detail-Panel
2026-05-29 09:14:36 +02:00

26 lines
724 B
TypeScript

export type TextFragment = {
_slug: string;
id?: string;
title?: string;
text?: string;
bulletPoints?: string[];
tags?: Array<{ _slug: string; name?: string } | string>;
};
export type WindArea = {
_slug: string;
gebiets_nr: string;
bezeichnung?: string;
status?: "rechtskraeftig" | "entwurf_2" | "entwurf_2_voraussichtlich" | "entwurf_3";
flaeche_ha?: number;
anlagen_geplant?: number;
hoehe_max_m?: number;
investor?: string;
gemeinden?: string[];
stellungnahme?: { _slug: string; slug?: string } | string | null;
stellungnahmeUrl?: string | null;
stellungnahme_kriterien?: Array<TextFragment | { _slug: string } | string> | null;
notizen?: string;
geometry?: GeoJSON.Geometry;
};