Interface NativeMapLibreSourceEntry

One MapLibre-native source entry derived from a binding.

interface NativeMapLibreSourceEntry {
    attribution?: string;
    sourceId: string;
    spec: {
        type: string;
        [key: string]: unknown;
    };
}

Properties

attribution?: string
sourceId: string
spec: {
    type: string;
    [key: string]: unknown;
}