/** * Return function to register a Marker Symbol for give SVG Path * * @param svgPath SVG Path string * @param viewBoxWidth SVG view box width, default to 1024 * @param viewBoxHeight SVG view box height, default to 1024 */ export declare function path2marker(svgPath: string, viewBoxWidth?: number, viewBoxHeight?: number): (x: number, y: number, r: number) => (string | number)[][]; /** * Return function to register a Marker symbol for give svg file * * @param icon SVG file content */ export declare function svg2marker(icon: string): (x: number, y: number, r: number) => (string | number)[][];