28 lines
562 B
Vue
Raw Normal View History

2025-03-17 17:34:32 +08:00
<template>
<div class="map-center-warp">
2025-03-19 14:47:11 +08:00
<img :src="getAssetsFile('images/vsualized/gmmap.png')" class="map-img" />
2025-03-17 17:34:32 +08:00
</div>
</template>
<script setup>
import { isEmpty, getAssetsFile } from '@/utils';
</script>
<style lang="scss" scoped>
.map-center-warp {
width: 100%;
text-align: center;
position: relative;
height: 100%;
.map-img {
width: 80%;
height: 80%;
position: absolute;
bottom: 50px;
left: 50%;
object-fit: contain;
transform: translateX(-50%);
max-width: 1000px;
max-height: 1000px;
}
}
</style>