geostyler-openlayers-parser
Version:
GeoStyler Style Parser implementation for OpenLayers styles
14 lines (13 loc) • 564 B
TypeScript
import { MarkSymbolizer } from 'geostyler-style';
import { svgDefinition } from './OlSvgUtil';
export declare const SVG_SIZES: Record<string, number>;
export declare const pointSvgs: svgDefinition;
export declare const cleanWellKnownName: (wellKnownName: string) => string;
export declare const isPointDefinedAsSvg: (wellKnownName: string) => boolean;
/**
* Get the SVG string for a point symbolizer.
*
* @param symbolizer A GeoStyler-Style MarkSymbolizer.
* @return The SVG string
*/
export declare const getPointSvg: (symbolizer: MarkSymbolizer) => string;