Name
|
Type
|
Description
|
options
|
Object
|
可选
具有以下属性的对象:
名称
|
类型
|
默认
|
说明
|
style
|
IonWorldImageryStyle
|
IonWorldImageryStyle
|
可选
当前仅支持基本图像的样式,仅支持AERIAL,AERIAL_WITH_LABELS和ROAD。
|
|
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: