ProviderViewModel

new Cesium.ProviderViewModel(options)

A view model that represents each item in the BaseLayerPicker.
参数名称 类型 描述信息
options object The object containing all parameters.
参数名称 类型 描述信息
name string The name of the layer.
tooltip string The tooltip to show when the item is moused over.
iconUrl string An icon representing the layer.
category string 可选 A category for the layer.
creationFunction ProviderViewModel.CreationFunction | Command A function or Command that creates one or more providers which will be added to the globe when this item is selected.
参考:

成员(属性)

Gets the category
Gets the Command that creates one or more providers which will be added to the globe when this item is selected.
Gets the icon. This property is observable.
Gets the display name. This property is observable.
Gets the tooltip. This property is observable.

定义的类型

Cesium.ProviderViewModel.CreationFunction()ImageryProvider|TerrainProvider|Array.<ImageryProvider>|Array.<TerrainProvider>|Promise.<TerrainProvider>|Promise.<ImageryProvider>|Promise.<Array.<TerrainProvider>>|Promise.<Array.<ImageryProvider>>

A function which creates one or more providers.
返回值:
The ImageryProvider or TerrainProvider, or array of providers, to be added to the globe.