Newer
Older
KaiFengPC / src / views / sponeScreen / chengguanweiScreen / mainIndex.vue
@zhangdeliang zhangdeliang on 19 Jun 590 bytes update
<template>
  <!-- 3800*866 城管委-->
  <div class="cgwFivthScreen">
    3800*866 城管委
    <!-- 地图 -->
    <GisMapMF></GisMapMF>
    <!-- 图例 -->
    <Legend></Legend>
  </div>
</template>

<script setup>
import GisMapMF from '@/views/sponeScreen/gisMF/cesiumMap.vue';
import Legend from '@/views/sponeScreen/gisMF/legendKF.vue';
const { proxy } = getCurrentInstance();

onMounted(() => {});
</script>

<style lang="scss" scoped>
.cgwFivthScreen {
  // prettier-ignore
  width:3800PX;
  height: 866px;
  background: #010e22;
  overflow: auto;
  position: relative;
}
</style>