Name |
Type |
Description |
options |
Object
|
optional
具有以下属性的对象:
Name |
Type |
Default |
Description |
style |
IonWorldImageryStyle
|
IonWorldImageryStyle
|
optional
目前只支持基础图像的样式,仅支持“空中”、“带”标签的“空中”和“道路”。 |
|
Returns:
Examples:
// Create Cesium World Terrain with default settings
var viewer = new Cesium.Viewer('cesiumContainer', {
imageryProvider : Cesium.createWorldImagery();
});
// Create Cesium World Terrain with water and normals.
var viewer = new Cesium.Viewer('cesiumContainer', {
imageryProvider : Cesium.createWorldImagery({
style: Cesium.IonWorldImageryStyle.AERIAL_WITH_LABELS
})
});
See: