WholeProcessPlatform/frontend/src/components/gis/GisView.vue

24 lines
369 B
Vue
Raw Normal View History

2026-03-27 15:52:43 +08:00
<script setup lang="ts">
</script>
<template>
<div class="gis-view">
<div id="mapContainer" />
</div>
</template>
<style lang="scss" scoped>
.gis-view {
width: 100%;
height: 100%;
position: absolute;
visibility: visible;
}
#mapContainer {
width: 100%;
height: 100%;
position: relative;
background-color: red;
}
</style>