feat(SAT): add CesiumViewer component and utility functions; update dependencies
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
<script setup lang="ts">
|
||||
import Viewer from './Viewer.vue';
|
||||
import CesiumViewer from './CesiumViewer.vue';
|
||||
|
||||
const $datatableShow = ref(false);
|
||||
</script>
|
||||
@ -8,7 +8,7 @@ const $datatableShow = ref(false);
|
||||
<div class="relative w-full h-full SAT">
|
||||
<div id="container" class="absolute w-full h-full select-none">
|
||||
<div class="viewer" :style="$datatableShow ? 'height:70%' : 'height: 100%'">
|
||||
<Viewer />
|
||||
<CesiumViewer />
|
||||
</div>
|
||||
<div
|
||||
:class="[$datatableShow ? 'visible' : 'hidden', 'datatable absolute w-full b-0 l-0']"
|
||||
@ -33,9 +33,9 @@ const $datatableShow = ref(false);
|
||||
flex: 1;
|
||||
}
|
||||
</style>
|
||||
|
||||
<!--
|
||||
<style scoped>
|
||||
#container {
|
||||
background-color: pink;
|
||||
}
|
||||
</style>
|
||||
</style> -->
|
||||
|
Reference in New Issue
Block a user