@syncfusion/ej2-vue-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 Vue
28 lines (27 loc) • 843 B
TypeScript
import { DefineVueDirective } from '@syncfusion/ej2-vue-base';
import { InitialShapeSelectionSettingsModel } from '@syncfusion/ej2-maps';
export declare let InitialShapeSelectionsDirective: any;
export declare const InitialShapeSelectionsPlugin: {
name: string;
install(Vue: any): void;
};
/**
* Represents the directive to configure the selection of the shapes when the maps is initially rendered.
* ```vue
* <ejs-maps>
* <e-layers>
* <e-layer>
* <e-initialShapeSelections>
* <e-initialShapeSelection>
* </e-initialShapeSelection>
* </e-initialShapeSelections>
* </e-layer>
* </e-layers>
* </ejs-maps>
* ```
*/
export declare let InitialShapeSelectionDirective: DefineVueDirective<InitialShapeSelectionSettingsModel>;
export declare const InitialShapeSelectionPlugin: {
name: string;
install(Vue: any): void;
};