@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) • 678 B
TypeScript
import { DefineVueDirective } from '@syncfusion/ej2-vue-base';
import { BubbleSettingsModel } from '@syncfusion/ej2-maps';
export declare let BubblesDirective: any;
export declare const BubblesPlugin: {
name: string;
install(Vue: any): void;
};
/**
* Represents the directive to define the bubbles in the maps.
* ```vue
* <ejs-maps>
* <e-layers>
* <e-layer>
* <e-bubbleSettings>
* <e-bubbleSetting>
* </e-bubbleSetting>
* </e-bubbleSettings>
* </e-layer>
* </e-layers>
* </ejs-maps>
* ```
*/
export declare let BubbleDirective: DefineVueDirective<BubbleSettingsModel>;
export declare const BubblePlugin: {
name: string;
install(Vue: any): void;
};