@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
30 lines (29 loc) • 990 B
TypeScript
import { ComplexBase } from '@syncfusion/ej2-react-base';
import { NavigationLineSettingsModel } from '@syncfusion/ej2-maps';
export interface NavigationLineSettingsDirTypecast {
tooltipSettings?: any;
}
/**
* Represents the directive to define the navigation lines in the maps.
* ```tsx
* <MapsComponent>
* <LayersDirective>
* <LayerDirective>
* <NavigationLinesDirective>
* <NavigationLineDirective></NavigationLineDirective>
* </NavigationLinesDirective>
* </LayerDirective>
* </LayersDirective>
* </MapsComponent>
* ```
*/
export declare class NavigationLineDirective extends ComplexBase<NavigationLineSettingsModel | NavigationLineSettingsDirTypecast & {
children?: React.ReactNode;
}, NavigationLineSettingsModel | NavigationLineSettingsDirTypecast> {
static moduleName: string;
static complexTemplate: Object;
}
export declare class NavigationLinesDirective extends ComplexBase<{}, {}> {
static propertyName: string;
static moduleName: string;
}