#46 Einsatz-Marker & Chat/Report disabled wenn nicht verbunden

This commit is contained in:
PxlLoewe
2025-07-18 15:59:26 -07:00
parent 85fdfb3bb1
commit b0facf0941
7 changed files with 58 additions and 8 deletions

View File

@@ -12,6 +12,7 @@ import { MarkerCluster } from "_components/map/_components/MarkerCluster";
import { useEffect, useRef } from "react";
import { Map as TMap } from "leaflet";
import { DistanceLayer } from "_components/map/Measurement";
import { MapAdditionals } from "_components/map/MapAdditionals";
const Map = () => {
const ref = useRef<TMap | null>(null);
@@ -48,6 +49,7 @@ const Map = () => {
<MissionLayer />
<AircraftLayer />
<DistanceLayer />
<MapAdditionals />
</MapContainer>
);
};