geotiff.js
    Preparing search index...

    Interface SourceOptions

    interface SourceOptions {
        allowFullFile?: boolean;
        blockSize?: number;
        cacheSize?: number;
        forceXHR?: boolean;
        headers?: Record<string, string>;
        maxRanges?: number;
    }

    Properties

    allowFullFile?: boolean

    Whether to allow full file responses when requesting ranges

    blockSize?: number

    Block size for a BlockedSource. Set to null to disable blocking and caching.

    cacheSize?: number

    The number of blocks to cache.

    forceXHR?: boolean

    When the Fetch API would be used, force using XMLHttpRequest instead.

    headers?: Record<string, string>

    Additional headers to add to each request

    maxRanges?: number

    Maximum number of ranges to request in a single HTTP request. 0 means no multi-range requests.