Publication minimap implemented

This commit is contained in:
Porras-Bernardez 2024-05-24 13:47:28 +02:00
parent ccf4e238f3
commit 9968b1e466
6 changed files with 108 additions and 43 deletions

View file

@ -0,0 +1,16 @@
<!-- Contains the template and references the TypeScript logic. -->
<template>
<div id="map" style="height: 300px;"></div>
</template>
<script lang="ts">
import Minimap from './Minimap';
export default Minimap;
</script>
<style scoped>
#map {
height: 100%;
width: 100%;
}
</style>