2025-05-21 11:24:53 +08:00
|
|
|
<template>
|
|
|
|
<div class="ol-map" id="olMap"></div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup>
|
2025-06-18 19:56:54 +08:00
|
|
|
import { workScheduleDel } from '@/api/progress/plan';
|
|
|
|
import { renderFacilitiesToCesium } from '@/views/gisHome/js/renderFacilities';
|
|
|
|
let sdk = null;
|
|
|
|
|
|
|
|
const initFacilities = async () => {
|
|
|
|
const res = await workScheduleDel('1933358821565095951');
|
|
|
|
console.log(res);
|
|
|
|
|
2025-06-19 19:58:33 +08:00
|
|
|
renderFacilitiesToCesium(sdk.viewer, res.data);
|
2025-06-18 19:56:54 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
// 初始化 Cesium 地球
|
2025-05-21 11:24:53 +08:00
|
|
|
const createEarth = () => {
|
2025-06-18 19:56:54 +08:00
|
|
|
sdk = new YJ.YJEarth('olMap');
|
|
|
|
|
2025-05-21 11:24:53 +08:00
|
|
|
YJ.Global.setDefaultView(sdk, {
|
|
|
|
destination: { lng: 100, lat: 30, alt: 22099000 },
|
|
|
|
orientation: {
|
|
|
|
heading: 0.0,
|
|
|
|
pitch: -90.0,
|
|
|
|
roll: 0.0
|
|
|
|
}
|
|
|
|
});
|
2025-06-18 19:56:54 +08:00
|
|
|
|
|
|
|
new YJ.Obj.ArcgisWXImagery(sdk, {
|
2025-05-21 11:24:53 +08:00
|
|
|
show: true,
|
|
|
|
layer_index: 1
|
|
|
|
});
|
2025-06-18 19:56:54 +08:00
|
|
|
|
2025-05-21 11:24:53 +08:00
|
|
|
YJ.Global.CesiumContainer(sdk, {
|
2025-06-18 19:56:54 +08:00
|
|
|
compass: false
|
2025-05-21 11:24:53 +08:00
|
|
|
});
|
2025-06-18 19:56:54 +08:00
|
|
|
|
2025-05-21 11:24:53 +08:00
|
|
|
new YJ.Tools(sdk).flyHome(0);
|
|
|
|
};
|
|
|
|
|
|
|
|
onMounted(async () => {
|
2025-06-18 19:56:54 +08:00
|
|
|
// 最早执行
|
|
|
|
window.CESIUM_BASE_URL = '/Cesium/';
|
|
|
|
|
2025-05-21 11:24:53 +08:00
|
|
|
await YJ.on();
|
|
|
|
createEarth();
|
2025-06-18 19:56:54 +08:00
|
|
|
await initFacilities();
|
2025-05-21 11:24:53 +08:00
|
|
|
console.log(YJ);
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
@import '../css/gis.scss';
|
|
|
|
.ol-map {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: calc(100vh);
|
|
|
|
}
|
2025-06-18 19:56:54 +08:00
|
|
|
.btn {
|
|
|
|
position: absolute;
|
|
|
|
top: 20px;
|
|
|
|
left: 20px;
|
|
|
|
z-index: 10;
|
|
|
|
}
|
2025-05-21 11:24:53 +08:00
|
|
|
</style>
|