Aurora update

This commit is contained in:
2026-06-25 00:01:50 -04:00
parent b8ffc20360
commit 84707b2777
4 changed files with 107 additions and 2 deletions

View File

@@ -1,6 +1,7 @@
<script setup lang="ts">
import { AirTrafficLayer } from '@/services/airtraffic.ts'
import {api} from '@/services/api.ts';
import {AuroraLayer} from '@/services/aurora.ts';
import { computed, onMounted, onUnmounted, ref, watch } from 'vue'
import Map from 'ol/Map'
import View from 'ol/View'
@@ -191,6 +192,9 @@ onMounted(async () => {
controls: [],
})
const aurora = new AuroraLayer(map)
aurora.show();
airTraffic = new AirTrafficLayer(map)
airTraffic.show()