Interface ZarrTileResultExperimental

interface ZarrTileResult {
    bytes: Uint8Array;
    contentType: null | "image/png";
    requestUrl: string;
    status: 200 | 204;
}

Properties

bytes: Uint8Array
contentType: null | "image/png"

null when the requested tile does not intersect the coverage (204).

requestUrl: string
status: 200 | 204