Commit 2133ddd6 by jlc

update:面案例代码结构的修改

parent 80c534dc
export function addPlane() { export function addPlane(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: "CZML Colors",
version: "1.0",
const viewer = new window.Cesium.Viewer('cesiumContainer', { },
infoBox: false, {
}); id: "rgba",
name: "Rectangle with outline using RGBA Colors",
const czml = [ rectangle: {
{ coordinates: {
id: "document", wsenDegrees: [-120, 40, -110, 50],
name: "CZML Colors",
version: "1.0",
}, },
{ fill: true,
id: "rgba", material: {
name: "Rectangle with outline using RGBA Colors", solidColor: {
rectangle: { color: {
coordinates: { rgba: [255, 0, 0, 100],
wsenDegrees: [-120, 40, -110, 50],
},
fill: true,
material: {
solidColor: {
color: {
rgba: [255, 0, 0, 100],
},
},
},
height: 0, // disables ground clamping, needed for outlines
outline: true,
outlineColor: {
rgba: [0, 0, 0, 255],
}, },
}, },
}, },
{ height: 0, // disables ground clamping, needed for outlines
id: "rgbaf", outline: true,
name: "Rectangle using RGBAF Colors", outlineColor: {
rectangle: { rgba: [0, 0, 0, 255],
coordinates: { wsenDegrees: [-100, 40, -90, 50] }, },
fill: true, },
material: { },
solidColor: { {
color: { id: "rgbaf",
rgbaf: [1, 0, 0, 0.39], name: "Rectangle using RGBAF Colors",
}, rectangle: {
}, coordinates: { wsenDegrees: [-100, 40, -90, 50] },
}, fill: true,
height: 0, // disables ground clamping, needed for outlines material: {
outline: true, solidColor: {
outlineColor: { color: {
rgba: [0, 0, 0, 255], rgbaf: [1, 0, 0, 0.39],
}, },
}, },
}, },
]; height: 0, // disables ground clamping, needed for outlines
outline: true,
const dataSourcePromise = Cesium.CzmlDataSource.load(czml); outlineColor: {
viewer.dataSources.add(dataSourcePromise); rgba: [0, 0, 0, 255],
viewer.zoomTo(dataSourcePromise); },
}; },
document.head.appendChild(script); },
];
const link = document.createElement('link');
link.rel = 'stylesheet'; const dataSourcePromise = Cesium.CzmlDataSource.load(czml);
link.href = 'https://cesium.com/downloads/cesiumjs/releases/1.119/Build/Cesium/Widgets/widgets.css'; viewer.dataSources.add(dataSourcePromise);
document.head.appendChild(link); viewer.zoomTo(dataSourcePromise);
} }
<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 { addPlane } from './function'; import { addPlane } from './function';
let viewer;
onMounted(() => { onMounted(() => {
addPlane() 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,
});
addPlane(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