Taos API Reference
    Preparing search index...

    Interface ImageryProvider

    A Web Mercator (EPSG:3857) XYZ raster imagery source for draping over terrain.

    interface ImageryProvider {
        label: string;
        attribution: string;
        maxZoom: number;
        tileSize: number;
        url(tile: MercTile): string;
    }
    Index

    Properties

    label: string

    Short provider name (for logs / a layer picker).

    attribution: string

    Attribution HTML that must be shown while this provider is on screen.

    maxZoom: number

    Deepest native zoom; deeper tiles 404, so draping clamps the mosaic to this.

    tileSize: number

    Tile edge in px (256 for every standard slippy-map provider).

    Methods