Interface HonuaMapLibreRasterSourceSpecification

Standard MapLibre raster source shape used by migrated tiled services.

interface HonuaMapLibreRasterSourceSpecification {
    attribution?: string;
    tiles: string[];
    tileSize?: number;
    type: "raster";
    [key: string]: unknown;
}

Indexable

  • [key: string]: unknown

Properties

attribution?: string
tiles: string[]
tileSize?: number
type