原文链接及内容

结果如下图所示:Sentinel-2无云图由EOX IT Services GmbH提供,包含修改后的Copernicus Sentinel数据,2016年和2017年,并由 Cesium ion 托管。

示例代码如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
const viewer = new Cesium.Viewer("cesiumContainer", {
geocoder: false,
homeButton: false,
navigationHelpButton: false,
navigationInstructionsInitiallyVisible: false,
animation: false,
timeline: false,
fullscreenButton: false,
skyBox: false,
sceneModePicker: false,
baseLayerPicker: false,
infoBox: false,
baseLayer: Cesium.ImageryLayer.fromProviderAsync(
Cesium.IonImageryProvider.fromAssetId(3954),
),
});