1.使用entity绘制随机点
// 随机生成 1000 个点
const numPoints = 1000;
for (let i = 0; i < numPoints; i++) {
const lon = Math.random() * 360 - 180;
const lat = Math.random() * 180 - 90;
const height = 50000 + Math.random() * 5000;
// 将点添加到 Cesium Viewer 中
viewer