geotiff.js
    Preparing search index...

    Interface RemoteSourceOptions

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

    Properties

    allowFullFile?: boolean

    Whether to allow full file responses when requesting ranges

    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.