UNPKG

@syncfusion/ej2-react-maps

Version:

The Maps component is used to visualize the geographical data and represent the statistical data of a particular geographical area on earth with user interactivity, and provides various customizing options for React

25 lines (24 loc) 781 B
import { ComplexBase } from '@syncfusion/ej2-react-base'; import { AnnotationModel } from '@syncfusion/ej2-maps'; export interface AnnotationDirTypecast { content?: string | Function | any; } /** * Represents the directive to define the annotations in the maps. * ```tsx * <MapsComponent> * <AnnotationsDirective> * <AnnotationDirective></AnnotationDirective> * </AnnotationsDirective> * </MapsComponent> * ``` */ export declare class AnnotationDirective extends ComplexBase<AnnotationModel | AnnotationDirTypecast & { children?: React.ReactNode; }, AnnotationModel | AnnotationDirTypecast> { static moduleName: string; } export declare class AnnotationsDirective extends ComplexBase<{}, {}> { static propertyName: string; static moduleName: string; }