chfore: split map into components

This commit is contained in:
2026-07-05 11:27:59 +02:00
parent df977558fa
commit 6fa15f2ef3
5 changed files with 289 additions and 165 deletions
+23
View File
@@ -0,0 +1,23 @@
interface Route {
id: string;
gtfsId: string;
shortName: string;
longName: string;
color: string;
textColor: string;
mode: string;
type: string;
timeSheet: string;
pdfTimeSheet: boolean;
pdfMap: boolean;
}
interface Cluster {
city: string;
code: string;
id: string;
lat: number;
lon: number;
name: string;
visible: boolean;
}