API (v2.0.0) - Giro3D
    Preparing search index...

    Interface WmtsFromCapabilitiesOptions

    interface WmtsFromCapabilitiesOptions {
        colorSpace?: ColorSpace;
        containsFn?: CustomContainsFn;
        extent?: Extent;
        flipY?: boolean;
        format?: ImageFormat;
        imageFormat?: string;
        is8bit?: boolean;
        layer: string;
        matrixSet?: string;
        noDataValue?: number;
        requestPriority?: RequestPriority;
        synchronous?: boolean;
        transparent?: boolean;
    }

    Hierarchy (View Summary)

    Index

    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.

    imageFormat?: string

    The image format (i.e its MIME type, like image/png). Note that it is different from the format decoder (that uses the format property)

    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.

    layer: string

    The name of the layer.

    matrixSet?: string

    The tile matrix set identifier.

    noDataValue?: number

    The optional no-data value.

    requestPriority?: RequestPriority

    The relative priority of HTTP requests emitted by this source.

    'auto'

    synchronous?: boolean

    Is this source able to generate images synchronously ?

    transparent?: boolean

    Should the generated images be considered transparent ?

    false