|
|
|
<template>
|
|
|
|
<div id="map">
|
|
|
|
<SceneViewer id="scene-viewer"></SceneViewer>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
|
import SceneViewer from './components/map/SceneViewer.vue'
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
#map {
|
|
|
|
width: 100vw;
|
|
|
|
height: 100vh;
|
|
|
|
position: relative;
|
|
|
|
/* overflow: hidden; */
|
|
|
|
}
|
|
|
|
#scene-viewer {
|
|
|
|
width: 100vw;
|
|
|
|
height: 100vh;
|
|
|
|
position: absolute;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
</style>
|