tethys.frontend/src/components/map/map.component.vue
Arno Kaimbacher 5fe134a650 - replace moment with dayjs
- add leaflet.css inside main-styles.css
- add map.componetn for leaflet map
- bind properties to map via map-view.component
2022-01-26 16:32:19 +01:00

19 lines
358 B
Vue

<template>
<div v-bind:id="mapId" class="map-container mapDesktop"></div>
</template>
<script lang="ts">
import MapComponent from "./map.component";
export default MapComponent;
</script>
<style lang="scss" scoped>
.mapDesktop {
overflow: hidden;
position: absolute;
bottom: 30px;
top: 30px;
left: 30px;
right: 30px;
}
</style>