Interface HonuaOgcTileResponse

Raw bytes returned from a tile fetch, plus the negotiated content type.

interface HonuaOgcTileResponse {
    bytes: Uint8Array;
    contentType: string;
    empty: boolean;
}

Properties

bytes: Uint8Array
contentType: string
empty: boolean

True when the server returned a non-error empty payload (sparse tile).