Commit a303f71e by jlc

update:坐标轴案例代码结构的修改

parent 3fbf5d33
export function addCoordinateAxis() { export function addCoordinateAxis(viewer) {
const script = document.createElement('script'); const czml = [
script.src = 'https://cesium.com/downloads/cesiumjs/releases/1.99/Build/Cesium/Cesium.js'; {
script.onload = () => { id: "document",
window.Cesium.Ion.defaultAccessToken = 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiI3Njg4ZWU5Yi1iZDhiLTRhYmUtOTRiYS04YjM5NmUwNjVmMDMiLCJpZCI6MjI3MzQ3LCJpYXQiOjE3MjA1MjA4Mjh9.E5XW4LnwgfVAaBC-znaYr61m4yK0-j2qEQhi9qwFFPE' name: "SpaceX",
version: "1.0",
const viewer = new window.Cesium.Viewer('cesiumContainer', { clock: {
infoBox: false, interval: "2019-08-28T04:00:00Z/2019-08-28T04:20:00Z",
shouldAnimate: true currentTime: "2019-08-28T04:00:00.00Z",
}); multiplier: 1,
range: "LOOP_STOP",
const czml = [ step: "SYSTEM_CLOCK_MULTIPLIER"
{ }
id: "document", },
name: "SpaceX", {
version: "1.0", id: "point",
clock: { name: "point",
interval: "2019-08-28T04:00:00Z/2019-08-28T04:20:00Z", position: {
currentTime: "2019-08-28T04:00:00.00Z", cartographicDegrees: [120.0, 30.0, 0],
multiplier: 1,
range: "LOOP_STOP",
step: "SYSTEM_CLOCK_MULTIPLIER"
}
}, },
{ point: {
id: "point", color: {
name: "point", rgba: [255, 255, 255, 255],
position: {
cartographicDegrees: [120.0, 30.0, 0],
},
point: {
color: {
rgba: [255, 255, 255, 255],
},
outlineColor: {
rgba: [255, 0, 0, 255],
},
outlineWidth: 4,
pixelSize: 20,
},
}, },
]; outlineColor: {
rgba: [255, 0, 0, 255],
var dataSourcePromise = viewer.dataSources.add(Cesium.CzmlDataSource.load(czml)); },
dataSourcePromise.then(function (dataSource) { outlineWidth: 4,
// 根据模型所在的实体去进行加载 pixelSize: 20,
viewer.trackedEntity = dataSource.entities.getById('point'); },
},
let matrix = viewer.trackedEntity?.computeModelMatrix(Cesium.JulianDate.fromIso8601('2019-08-28T04:00:00.00Z')) ];
// 通过调试的实体来绘制模型坐标轴
viewer.scene.primitives.add(
new Cesium.DebugModelMatrixPrimitive({ // 加载模型偏移矩阵的图元
modelMatrix: matrix, // 设置偏移矩阵
length: 100000,
width: 10
})
);
}).catch(function (error) {
console.error(error);
});
}; var dataSourcePromise = viewer.dataSources.add(Cesium.CzmlDataSource.load(czml));
document.head.appendChild(script); dataSourcePromise.then(function (dataSource) {
// 根据模型所在的实体去进行加载
viewer.trackedEntity = dataSource.entities.getById('point');
const link = document.createElement('link'); let matrix = viewer.trackedEntity?.computeModelMatrix(Cesium.JulianDate.fromIso8601('2019-08-28T04:00:00.00Z'))
link.rel = 'stylesheet'; // 通过调试的实体来绘制模型坐标轴
link.href = 'https://cesium.com/downloads/cesiumjs/releases/1.119/Build/Cesium/Widgets/widgets.css'; viewer.scene.primitives.add(
document.head.appendChild(link); new Cesium.DebugModelMatrixPrimitive({ // 加载模型偏移矩阵的图元
modelMatrix: matrix, // 设置偏移矩阵
length: 100000,
width: 10
})
);
}).catch(function (error) {
console.error(error);
});
} }
<template> <template>
<div id="cesiumContainer" class="cesium-container"></div> <div id="cesiumContainer" class="cesium-container"></div>
</template> </template>
<script setup> <script setup>
import { onMounted } from 'vue'; import { onMounted } from 'vue';
import { addCoordinateAxis } from './function'; import { addCoordinateAxis } from './function';
let viewer;
onMounted(() => { onMounted(() => {
addCoordinateAxis() const script = document.createElement('script');
script.src = 'https://cesium.com/downloads/cesiumjs/releases/1.99/Build/Cesium/Cesium.js';
script.onload = () => {
window.Cesium.Ion.defaultAccessToken = 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiI3Njg4ZWU5Yi1iZDhiLTRhYmUtOTRiYS04YjM5NmUwNjVmMDMiLCJpZCI6MjI3MzQ3LCJpYXQiOjE3MjA1MjA4Mjh9.E5XW4LnwgfVAaBC-znaYr61m4yK0-j2qEQhi9qwFFPE'
viewer = new window.Cesium.Viewer('cesiumContainer', {
infoBox: false,
shouldAnimate: true
});
addCoordinateAxis(viewer)
};
document.head.appendChild(script);
const link = document.createElement('link');
link.rel = 'stylesheet';
link.href = 'https://cesium.com/downloads/cesiumjs/releases/1.119/Build/Cesium/Widgets/widgets.css';
document.head.appendChild(link);
}); });
</script> </script>
<style> <style>
.cesium-container { .cesium-container {
width: 100%; width: 100%;
height: 100vh; height: 100vh;
} }
</style> </style>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment