dev, Dispatch + Pilot Settings

This commit is contained in:
PxlLoewe
2025-07-24 14:53:40 -07:00
parent 3c5b86eb41
commit 08c4cfe082
9 changed files with 268 additions and 31 deletions

View File

@@ -216,7 +216,7 @@ export const MarkerCluster = () => {
const lng = aircraft.posLng!;
const existingClusterIndex = newCluster.findIndex(
(c) => Math.abs(c.lat - lat) < 1 && Math.abs(c.lng - lng) < 1,
(c) => Math.abs(c.lat - lat) < 1.55 && Math.abs(c.lng - lng) < 1,
);
const existingCluster = newCluster[existingClusterIndex];
if (existingCluster) {