Interface AutomaticMapLibreNativeSourceSpec

interface AutomaticMapLibreNativeSourceSpec {
    attribution?: string;
    bounds?: readonly [number, number, number, number];
    maxzoom?: number;
    minzoom?: number;
    promoteId?: string | Readonly<Record<string, string>>;
    scheme?: "xyz" | "tms";
    tiles?: readonly string[];
    tileSize?: number;
    type: "vector" | "raster";
    url?: string;
    volatile?: boolean;
}

Properties

attribution?: string
bounds?: readonly [number, number, number, number]
maxzoom?: number
minzoom?: number
promoteId?: string | Readonly<Record<string, string>>
scheme?: "xyz" | "tms"
tiles?: readonly string[]
tileSize?: number
type: "vector" | "raster"
url?: string
volatile?: boolean