<!--
|
* @Author: shuishen 1109946754@qq.com
|
* @Date: 2024-10-25 15:07:51
|
* @LastEditors: shuishen 1109946754@qq.com
|
* @LastEditTime: 2024-10-28 16:42:35
|
* @FilePath: \bigScreen\src\components\global\MapContainer.vue
|
* @Description:
|
*
|
* Copyright (c) 2024 by shuishen, All Rights Reserved.
|
-->
|
<template>
|
<div class="viewer-container" id="viewer-container">
|
<div class="content">
|
<slot name="content"></slot>
|
</div>
|
</div>
|
</template>
|
|
<script setup>
|
import { readyViewer } from 'hooks/initMap'
|
import { onMounted } from 'vue'
|
|
readyViewer()
|
</script>
|
|
<script>
|
export default {
|
name: 'MapContainer'
|
}
|
</script>
|
|
<style lang="scss" scoped>
|
.viewer-container {
|
position: absolute;
|
width: 100%;
|
height: 100%;
|
}
|
</style>
|