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

    Interface GeoTIFFSourceOptions

    interface GeoTIFFSourceOptions {
        cacheOptions?: GeoTIFFCacheOptions;
        channels?: ChannelMapping;
        colorSpace?: ColorSpace;
        containsFn?: CustomContainsFn;
        crs: CoordinateSystem;
        enableWorkers?: boolean;
        flipY?: boolean;
        httpTimeout?: number;
        is8bit?: boolean;
        requestPriority?: RequestPriority;
        retries?: number;
        synchronous?: boolean;
        transparent?: boolean;
        url: string;
        workerConcurrency?: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    cacheOptions?: GeoTIFFCacheOptions

    Advanced caching options.

    channels?: ChannelMapping

    How to map bands in the source GeoTIFF to color channels in Giro3D textures.

    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.

    The Coordinate Reference System of the image.

    enableWorkers?: boolean

    Enables web workers for CPU-intensive processing.

    true
    
    flipY?: boolean

    Should images be flipped vertically during composition ?

    httpTimeout?: number

    The optional HTTP request timeout, in milliseconds.

    10000
    
    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.

    requestPriority?: RequestPriority

    The relative priority of HTTP requests emitted by this source.

    'auto'

    retries?: number

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

    3
    
    synchronous?: boolean

    Is this source able to generate images synchronously ?

    transparent?: boolean

    Should the generated images be considered transparent ?

    false
    
    url: string

    The URL to the GeoTIFF image.

    workerConcurrency?: number

    The maximum number of workers created by the worker pool. If undefined, the maximum number of workers will be allowed.

    undefined