interface TiledImageSourceOptions {
    colorSpace?: ColorSpace;
    containsFn?: CustomContainsFn;
    extent?: Extent;
    flipY?: boolean;
    format?: ImageFormat;
    httpTimeout?: number;
    is8bit?: boolean;
    noDataValue?: number;
    retries?: number;
    source: UrlTile;
}

Hierarchy (view full)

Properties

colorSpace?: ColorSpace

The custom color space of the generated textures. See https://threejs.org/docs/#manual/en/introduction/Color-management for more information. If unspecified, the source considers that 8-bit images are in the sRGB color space, otherwise NoColorSpace.

containsFn?: CustomContainsFn

The custom function to test if a given extent is contained in this source. Note: we assume this function accepts extents in this source's CRS.

extent?: Extent

The optional extent of the source. If not provided, it will be computed from the source.

flipY?: boolean

Should images be flipped vertically during composition ?

format?: ImageFormat

The optional image decoder.

httpTimeout?: number

The optional HTTP request timeout, in milliseconds.

Default Value

5000
is8bit?: boolean

The data type of images generated. For regular color images, this should be true. For images with a high dynamic range, or images that requires additional processing, this should be false.

noDataValue?: number

The optional no-data value.

retries?: number

How many retries to execute when an HTTP request ends up in error.

Default Value

3
source: UrlTile

The underlying OpenLayers source.