设置初始化基本加载内容

This commit is contained in:
wzy-warehouse
2026-04-08 18:17:54 +08:00
parent 1b8348aecc
commit 1448aed7f0
6 changed files with 1561 additions and 710 deletions
+48 -8
View File
@@ -3,20 +3,60 @@
</template>
<script lang="ts" setup>
import { CesiumUtils } from '@/utils/cesium/CesiumUtils';
import { Cartesian3, type Viewer } from 'cesium';
import { Color, type Viewer } from 'cesium';
import { onMounted } from 'vue';
import config from '@/config/config.json';
import { CesiumUtilsSingleton } from '@/utils/cesium/CesiumUtils';
const cesiumUtils = new CesiumUtils();
let viewer: Viewer;
import BaQiiao from '@/assets/json/BaQiao.json';
import BeiLin from '@/assets/json/BeiLin.json';
import ChangAn from '@/assets/json/ChangAn.json';
import GaoLing from '@/assets/json/GaoLing.json';
import HuYi from '@/assets/json/HuYi.json';
import LanTian from '@/assets/json/LanTian.json';
import LianHu from '@/assets/json/LianHu.json';
import LinTong from '@/assets/json/LinTong.json';
import WeiYang from '@/assets/json/WeiYang.json';
import XinCheng from '@/assets/json/XinCheng.json';
import YanLiang from '@/assets/json/YanLiang.json';
import YanTa from '@/assets/json/YanTa.json';
import ZhouZhi from '@/assets/json/ZhouZhi.json';
let viewer: Viewer = CesiumUtilsSingleton.getViewer() as Viewer;
const displayAreas = [BaQiiao, BeiLin, ChangAn, GaoLing, HuYi, LanTian, LianHu, LinTong, WeiYang, XinCheng, YanLiang, YanTa, ZhouZhi]
onMounted(() => {
viewer = cesiumUtils.initCesiumViewer({
containerId: 'map-container',
CesiumUtilsSingleton.initCesiumViewer({
containerId: 'map-container'
})
cesiumUtils.viewToTarget(viewer, config.defaultPosition as [number, number, number]);
CesiumUtilsSingleton.viewToTarget(config.defaultPosition as [number, number, number]);
CesiumUtilsSingleton.batchAddGeoJsonLayers(
displayAreas.map(area => area.features[0].properties.name),
displayAreas,
new Array(displayAreas.length).fill(true),
displayAreas.map((area, index) => {
const areaName = area.features[0].properties.name;
return {
showName: true,
labelStyle: {
labelText: areaName,
center: [area.features[0].properties.center[0], area.features[0].properties.center[1], 0],
labelColor: Color.BLACK,
backgroundColor: Color.WHITE
},
polygonStyle: {
fill: true,
fillColor: Color.fromBytes(
Math.ceil(Math.random() * 255),
Math.ceil(Math.random() * 255),
Math.ceil(Math.random() * 255)
).withAlpha(0.3),
outline: false
}
}
})
);
})
</script>