RasterLayerSource
Last updated
Was this helpful?
The source of a raster layer's data.
imageTileTemplateUrl:
string
A URL template for fetching image tiles for the raster.
encodedTileTemplateUrl:
string
A URL template for fetching encoded tiles for the raster.
The encoded raster value can be calculated from the red, green, and blue values of the pixel using the following formula:
base + ((RED << 16) + (GREEN <<8) + BLUE) * intervalor
base + (RED * 256 * 256 + GREEN * 256 + BLUE) * intervalbands:
RasterBand[]
List of encoded raster bands
Last updated
Was this helpful?
Was this helpful?