geostyler
Version:
Framework for styling geodata
12 lines (11 loc) • 566 B
TypeScript
import { default as React } from 'react';
import { Symbolizer as GsSymbolizer } from 'geostyler-style';
export interface SymbolizersProps {
/** The callback function that is triggered when the symbolizers change. */
onSymbolizersChange?: (symbolizers: GsSymbolizer[]) => void;
/** The callback function that is triggered when a symbolizer was clicked. */
onEditSymbolizerClick?: (symbolizerId: number) => void;
/** List of symbolizers to display */
symbolizers: GsSymbolizer[];
}
export declare const Symbolizers: React.FC<SymbolizersProps>;