UNPKG

reaviz

Version:

Data Visualization using React

17 lines (16 loc) 354 B
import { FC } from 'react'; export interface MapMarkerProps { coordinates: [number, number]; index: number; cy?: number; cx?: number; /** * Radius of the marker circle. * * @default 3 */ size?: number; tooltip?: any; onClick?: () => void; } export declare const MapMarker: FC<Partial<MapMarkerProps>>;