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

31 lines (30 loc) 925 B
import { ComplexBase } from '@syncfusion/ej2-react-base'; import { MarkerSettingsModel } from '@syncfusion/ej2-maps'; export interface MarkerSettingsDirTypecast { template?: string | Function | any; tooltipSettings?: any; } /** * Represents the directive to define the markers in the maps. * ```tsx * <MapsComponent> * <LayersDirective> * <LayerDirective> * <MarkersDirective> * <MarkerDirective></MarkerDirective> * </MarkersDirective> * </LayerDirective> * </LayersDirective> * </MapsComponent> * ``` */ export declare class MarkerDirective extends ComplexBase<MarkerSettingsModel | MarkerSettingsDirTypecast & { children?: React.ReactNode; }, MarkerSettingsModel | MarkerSettingsDirTypecast> { static moduleName: string; static complexTemplate: Object; } export declare class MarkersDirective extends ComplexBase<{}, {}> { static propertyName: string; static moduleName: string; }