Interface LayerConversionResult

interface LayerConversionResult {
    layers: HonuaLayerSpecification[];
    popup?: HonuaPopupConfig;
    sources: Record<string, HonuaSourceSpecification | {
        type: string;
        [key: string]: unknown;
    }>;
}

Properties

Properties

sources: Record<string, HonuaSourceSpecification | {
    type: string;
    [key: string]: unknown;
}>