valhalla-browser API
    Preparing search index...

    Interface TileTrace

    A validated tile/metadata fetch; 64-bit offsets and lengths remain decimal strings.

    interface TileTrace {
        elapsedMs: number;
        http: Record<string, string | null>;
        offset: string;
        size: string;
        tileId?: string;
        url: string;
    }
    Index
    elapsedMs: number

    Download elapsed time in ms, including retries/backoff and integrity validation.

    http: Record<string, string | null>

    Selected response headers; inaccessible or missing values are null. Cache headers may be replayed from browser cache.

    offset: string

    Requested byte offset in the object, as an exact decimal string.

    size: string

    Requested byte count, as an exact decimal string.

    tileId?: string

    Decimal GraphId for tile reads, absent for archive metadata.

    url: string

    Actual requested object URL; avoid logging traces by default.