<template> <!--临近预警 在线滚动预报 GIS地图 --> <div class="lateWarnGis"> <gisMap2D></gisMap2D> </div> </template> <script setup name="lateWarnGis"> import gisMap2D from '@/views/gisMapPage/gisMapBox.vue'; const { proxy } = getCurrentInstance(); const allData = reactive({}); onMounted(() => {}); </script> <style lang="scss"> .lateWarnGis { width: 100%; height: calc(100vh - 120px); background: rgba(0, 0, 0, 0.05); } </style>