From 80b9b1bfcc1d6f829b60f93991cac0839bc8c7c6 Mon Sep 17 00:00:00 2001 From: ztimson Date: Thu, 25 Jun 2026 21:46:13 -0400 Subject: [PATCH] Removed old adsb shapes call --- client/src/services/adsb.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/client/src/services/adsb.ts b/client/src/services/adsb.ts index ab412af..29b6a93 100644 --- a/client/src/services/adsb.ts +++ b/client/src/services/adsb.ts @@ -180,7 +180,6 @@ export class AirTrafficLayer { private traceSegs: Record = {} private popups: Record void }> = {} private historyCache: Record = {} - private shapes: any = null private data: any[] = [] private clickHandler: ((e: any) => void) | null = null private refreshTimer: any = null; @@ -194,8 +193,6 @@ export class AirTrafficLayer { if (this.visible) return this.visible = true - if (!this.shapes) this.shapes = await fetch(`${API}/vehicles`).then(r => r.json()) - this.layer = new VectorLayer({ source: new VectorSource(), zIndex: 100 }) this.map.addLayer(this.layer)