Skip to main content

ImageryLayer

ImageryLayer is a imargery layer on the globe.

Layers are added in order of JSX from the top.

// Back layer
<ImageryLayer imageryProvider={provider1} />
<ImageryLayer imageryProvider={provider2} />
<ImageryLayer imageryProvider={provider3} />
// Front layer

is equivalent to:

viewer.imageryLayers.add(provider1);
viewer.imageryLayers.add(provider2);
viewer.imageryLayers.add(provider3);

As a result, the layer added at the very end is the frontmost when actually displayed.

Note: imageryProvider property is read only. See also guide.

Availability

Either:

Properties

Cesium properties

PropertyTypeDescription
showboolean
splitDirectionSplitDirection | ((...params: any[]) => any)
brightnessnumber | ((...params: any[]) => any)
alphanumber | ((...params: any[]) => any)
nightAlphanumber | ((...params: any[]) => any)
dayAlphanumber | ((...params: any[]) => any)
contrastnumber | ((...params: any[]) => any)
huenumber | ((...params: any[]) => any)
saturationnumber | ((...params: any[]) => any)
gammanumber | ((...params: any[]) => any)
minificationFilterTextureMinificationFilter
magnificationFilterTextureMagnificationFilter
cutoutRectangleRectangle
colorToAlphaColor
colorToAlphaThresholdnumber
indexnumber

Cesium read-only properties

PropertyTypeDescription
imageryProviderImageryProvider
rectangleRectangle
maximumAnisotropynumber
minimumTerrainLevelnumber
maximumTerrainLevelnumber

Cesium events

N/A

Other properties

N/A