24 lines
369 B
Vue
24 lines
369 B
Vue
<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>
|