You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
515 B
Vue
28 lines
515 B
Vue
<template>
|
|
<div id="map">
|
|
<SceneViewer id="scene-viewer"></SceneViewer>
|
|
<BottomBar></BottomBar>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import SceneViewer from './components/map/SceneViewer.vue'
|
|
import BottomBar from '@/components/map/BottomBar.vue'
|
|
</script>
|
|
|
|
<style>
|
|
@import 'styles/cesium-compass.css';
|
|
#map {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
position: relative;
|
|
/* overflow: hidden; */
|
|
}
|
|
#scene-viewer {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
position: absolute;
|
|
overflow: hidden;
|
|
}
|
|
</style>
|