@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) • 727 B
TypeScript
import { DefineVueDirective } from '@syncfusion/ej2-vue-base';
import { ColorMappingSettingsModel } from '@syncfusion/ej2-maps';
export declare let ColorMappingsDirective: any;
export declare const ColorMappingsPlugin: {
name: string;
install(Vue: any): void;
};
/**
* Represents the directive to define the bubble color mapping 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 ColorMappingDirective: DefineVueDirective<ColorMappingSettingsModel>;
export declare const ColorMappingPlugin: {
name: string;
install(Vue: any): void;
};