AIS, ADSB, and Range

This commit is contained in:
2026-06-25 15:54:51 -04:00
parent a2441fdb37
commit 29ccc7aba9
3 changed files with 25 additions and 3 deletions

View File

@@ -115,7 +115,13 @@ function tickPercent(index: number) {
}
function toggleAT() {
atActive.value ? airTraffic.hide() : airTraffic.show()
if(atActive.value) {
aisLayer.hide()
airTraffic.hide()
} else {
aisLayer.show()
airTraffic.show()
}
atActive.value = !atActive.value
}