@syncfusion/ej2-angular-maps 31.2.12-ngcc → 31.2.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/CHANGELOG.md +644 -0
  2. package/README.md +15 -7
  3. package/esm2020/public_api.mjs +2 -0
  4. package/esm2020/src/index.mjs +12 -0
  5. package/esm2020/src/maps/annotations.directive.mjs +62 -0
  6. package/esm2020/src/maps/bubblesettings.directive.mjs +71 -0
  7. package/esm2020/src/maps/colormapping.directive.mjs +61 -0
  8. package/esm2020/src/maps/initialshapeselection.directive.mjs +59 -0
  9. package/esm2020/src/maps/layers.directive.mjs +64 -0
  10. package/esm2020/src/maps/maps-all.module.mjs +68 -0
  11. package/esm2020/src/maps/maps.component.mjs +168 -0
  12. package/esm2020/src/maps/maps.module.mjs +88 -0
  13. package/esm2020/src/maps/markersettings.directive.mjs +73 -0
  14. package/esm2020/src/maps/navigationlinesettings.directive.mjs +67 -0
  15. package/esm2020/syncfusion-ej2-angular-maps.mjs +5 -0
  16. package/fesm2015/syncfusion-ej2-angular-maps.mjs +737 -0
  17. package/fesm2015/syncfusion-ej2-angular-maps.mjs.map +1 -0
  18. package/fesm2020/syncfusion-ej2-angular-maps.mjs +737 -0
  19. package/fesm2020/syncfusion-ej2-angular-maps.mjs.map +1 -0
  20. package/package.json +20 -7
  21. package/public_api.d.ts +1 -1
  22. package/src/index.d.ts +11 -11
  23. package/src/maps/annotations.directive.d.ts +58 -53
  24. package/src/maps/bubblesettings.directive.d.ts +121 -116
  25. package/src/maps/colormapping.directive.d.ts +76 -71
  26. package/src/maps/initialshapeselection.directive.d.ts +42 -37
  27. package/src/maps/layers.directive.d.ts +140 -135
  28. package/src/maps/maps-all.module.d.ts +26 -20
  29. package/src/maps/maps.component.d.ts +73 -70
  30. package/src/maps/maps.module.d.ts +18 -5
  31. package/src/maps/markersettings.directive.d.ts +176 -171
  32. package/src/maps/navigationlinesettings.directive.d.ts +80 -75
  33. package/syncfusion-ej2-angular-maps.d.ts +5 -0
  34. package/@syncfusion/ej2-angular-maps.es5.js +0 -877
  35. package/@syncfusion/ej2-angular-maps.es5.js.map +0 -1
  36. package/@syncfusion/ej2-angular-maps.js +0 -810
  37. package/@syncfusion/ej2-angular-maps.js.map +0 -1
  38. package/LICENSE +0 -10
  39. package/dist/ej2-angular-maps.umd.js +0 -1137
  40. package/dist/ej2-angular-maps.umd.js.map +0 -1
  41. package/dist/ej2-angular-maps.umd.min.js +0 -11
  42. package/dist/ej2-angular-maps.umd.min.js.map +0 -1
  43. package/ej2-angular-maps.d.ts +0 -5
  44. package/ej2-angular-maps.metadata.json +0 -1
@@ -1,75 +1,80 @@
1
- import { ViewContainerRef } from '@angular/core';
2
- import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
- /**
4
- * Represents the directive to define the navigation lines in the maps.
5
- * ```html
6
- * <e-layers>
7
- * <e-layer>
8
- * <e-navigationLineSettings>
9
- * <e-navigationLineSetting>
10
- * </e-navigationLineSetting>
11
- * </e-navigationLineSettings>
12
- * </e-layer>
13
- * </e-layers>
14
- * ```
15
- */
16
- export declare class NavigationLineDirective extends ComplexBase<NavigationLineDirective> {
17
- private viewContainerRef;
18
- directivePropList: any;
19
- /**
20
- * Gets or sets the angle of the curve connecting different locations in maps.
21
- * @default 0
22
- */
23
- angle: any;
24
- /**
25
- * Gets or sets the options to customize the arrow for the navigation line in maps.
26
- */
27
- arrowSettings: any;
28
- /**
29
- * Gets or sets the color for the navigation lines in maps.
30
- * @default 'black'
31
- */
32
- color: any;
33
- /**
34
- * Gets or sets the dash-array for the navigation lines drawn in maps.
35
- * @default ''
36
- */
37
- dashArray: any;
38
- /**
39
- * Gets or sets the highlight settings of the navigation line in maps.
40
- */
41
- highlightSettings: any;
42
- /**
43
- * Gets or sets the latitude value for the navigation lines to be drawn in maps.
44
- * @default []
45
- */
46
- latitude: any;
47
- /**
48
- * Gets or sets the longitude for the navigation lines to be drawn in maps.
49
- * @default []
50
- */
51
- longitude: any;
52
- /**
53
- * Gets or sets the selection settings of the navigation line in maps.
54
- */
55
- selectionSettings: any;
56
- /**
57
- * Enables or disables the navigation lines to be drawn in maps.
58
- * @default false
59
- */
60
- visible: any;
61
- /**
62
- * Gets or sets the width of the navigation lines in maps.
63
- * @default 1
64
- */
65
- width: any;
66
- tooltipSettings_template: any;
67
- constructor(viewContainerRef: ViewContainerRef);
68
- }
69
- /**
70
- * NavigationLine Array Directive
71
- * @private
72
- */
73
- export declare class NavigationLinesDirective extends ArrayBase<NavigationLinesDirective> {
74
- constructor();
75
- }
1
+ import { ViewContainerRef } from '@angular/core';
2
+ import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
+ import * as i0 from "@angular/core";
4
+ /**
5
+ * Represents the directive to define the navigation lines in the maps.
6
+ * ```html
7
+ * <e-layers>
8
+ * <e-layer>
9
+ * <e-navigationLineSettings>
10
+ * <e-navigationLineSetting>
11
+ * </e-navigationLineSetting>
12
+ * </e-navigationLineSettings>
13
+ * </e-layer>
14
+ * </e-layers>
15
+ * ```
16
+ */
17
+ export declare class NavigationLineDirective extends ComplexBase<NavigationLineDirective> {
18
+ private viewContainerRef;
19
+ directivePropList: any;
20
+ /**
21
+ * Gets or sets the angle of the curve connecting different locations in maps.
22
+ * @default 0
23
+ */
24
+ angle: any;
25
+ /**
26
+ * Gets or sets the options to customize the arrow for the navigation line in maps.
27
+ */
28
+ arrowSettings: any;
29
+ /**
30
+ * Gets or sets the color for the navigation lines in maps.
31
+ * @default 'black'
32
+ */
33
+ color: any;
34
+ /**
35
+ * Gets or sets the dash-array for the navigation lines drawn in maps.
36
+ * @default ''
37
+ */
38
+ dashArray: any;
39
+ /**
40
+ * Gets or sets the highlight settings of the navigation line in maps.
41
+ */
42
+ highlightSettings: any;
43
+ /**
44
+ * Gets or sets the latitude value for the navigation lines to be drawn in maps.
45
+ * @default []
46
+ */
47
+ latitude: any;
48
+ /**
49
+ * Gets or sets the longitude for the navigation lines to be drawn in maps.
50
+ * @default []
51
+ */
52
+ longitude: any;
53
+ /**
54
+ * Gets or sets the selection settings of the navigation line in maps.
55
+ */
56
+ selectionSettings: any;
57
+ /**
58
+ * Enables or disables the navigation lines to be drawn in maps.
59
+ * @default false
60
+ */
61
+ visible: any;
62
+ /**
63
+ * Gets or sets the width of the navigation lines in maps.
64
+ * @default 1
65
+ */
66
+ width: any;
67
+ tooltipSettings_template: any;
68
+ constructor(viewContainerRef: ViewContainerRef);
69
+ static ɵfac: i0.ɵɵFactoryDeclaration<NavigationLineDirective, never>;
70
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NavigationLineDirective, "e-layer>e-navigationLineSettings>e-navigationLineSetting", never, { "angle": "angle"; "arrowSettings": "arrowSettings"; "color": "color"; "dashArray": "dashArray"; "highlightSettings": "highlightSettings"; "latitude": "latitude"; "longitude": "longitude"; "selectionSettings": "selectionSettings"; "visible": "visible"; "width": "width"; }, {}, ["tooltipSettings_template"]>;
71
+ }
72
+ /**
73
+ * NavigationLine Array Directive
74
+ * @private
75
+ */
76
+ export declare class NavigationLinesDirective extends ArrayBase<NavigationLinesDirective> {
77
+ constructor();
78
+ static ɵfac: i0.ɵɵFactoryDeclaration<NavigationLinesDirective, never>;
79
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NavigationLinesDirective, "e-layer>e-navigationLineSettings", never, {}, {}, ["children"]>;
80
+ }
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@syncfusion/ej2-angular-maps" />
5
+ export * from './public_api';