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

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 (43) hide show
  1. package/CHANGELOG.md +636 -0
  2. package/esm2020/public_api.mjs +2 -0
  3. package/esm2020/src/index.mjs +12 -0
  4. package/esm2020/src/maps/annotations.directive.mjs +62 -0
  5. package/esm2020/src/maps/bubblesettings.directive.mjs +71 -0
  6. package/esm2020/src/maps/colormapping.directive.mjs +61 -0
  7. package/esm2020/src/maps/initialshapeselection.directive.mjs +59 -0
  8. package/esm2020/src/maps/layers.directive.mjs +64 -0
  9. package/esm2020/src/maps/maps-all.module.mjs +68 -0
  10. package/esm2020/src/maps/maps.component.mjs +168 -0
  11. package/esm2020/src/maps/maps.module.mjs +88 -0
  12. package/esm2020/src/maps/markersettings.directive.mjs +73 -0
  13. package/esm2020/src/maps/navigationlinesettings.directive.mjs +67 -0
  14. package/esm2020/syncfusion-ej2-angular-maps.mjs +5 -0
  15. package/fesm2015/syncfusion-ej2-angular-maps.mjs +737 -0
  16. package/fesm2015/syncfusion-ej2-angular-maps.mjs.map +1 -0
  17. package/fesm2020/syncfusion-ej2-angular-maps.mjs +737 -0
  18. package/fesm2020/syncfusion-ej2-angular-maps.mjs.map +1 -0
  19. package/package.json +59 -15
  20. package/public_api.d.ts +1 -1
  21. package/src/index.d.ts +11 -11
  22. package/src/maps/annotations.directive.d.ts +58 -53
  23. package/src/maps/bubblesettings.directive.d.ts +121 -116
  24. package/src/maps/colormapping.directive.d.ts +76 -71
  25. package/src/maps/initialshapeselection.directive.d.ts +42 -37
  26. package/src/maps/layers.directive.d.ts +140 -135
  27. package/src/maps/maps-all.module.d.ts +26 -20
  28. package/src/maps/maps.component.d.ts +73 -70
  29. package/src/maps/maps.module.d.ts +18 -5
  30. package/src/maps/markersettings.directive.d.ts +176 -171
  31. package/src/maps/navigationlinesettings.directive.d.ts +80 -75
  32. package/syncfusion-ej2-angular-maps.d.ts +5 -0
  33. package/@syncfusion/ej2-angular-maps.es5.js +0 -877
  34. package/@syncfusion/ej2-angular-maps.es5.js.map +0 -1
  35. package/@syncfusion/ej2-angular-maps.js +0 -810
  36. package/@syncfusion/ej2-angular-maps.js.map +0 -1
  37. package/LICENSE +0 -10
  38. package/dist/ej2-angular-maps.umd.js +0 -1137
  39. package/dist/ej2-angular-maps.umd.js.map +0 -1
  40. package/dist/ej2-angular-maps.umd.min.js +0 -11
  41. package/dist/ej2-angular-maps.umd.min.js.map +0 -1
  42. package/ej2-angular-maps.d.ts +0 -5
  43. package/ej2-angular-maps.metadata.json +0 -1
@@ -1,135 +1,140 @@
1
- import { ViewContainerRef } from '@angular/core';
2
- import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
- /**
4
- * Represents the directive to define the layer of the maps.
5
- * ```html
6
- * <e-layers>
7
- * <e-layer></e-layer>
8
- * </e-layers>
9
- * ```
10
- */
11
- export declare class LayerDirective extends ComplexBase<LayerDirective> {
12
- private viewContainerRef;
13
- directivePropList: any;
14
- childInitialShapeSelection: any;
15
- childMarkerSettings: any;
16
- childBubbleSettings: any;
17
- childNavigationLineSettings: any;
18
- tags: string[];
19
- /**
20
- * Gets or sets the type of the layer in maps. There are two types: Layer and SubLayer.
21
- * @default Layer
22
- */
23
- type: any;
24
- /**
25
- * Gets or sets the duration of the animation of layers when the zooming is performed in maps.
26
- * @default 0
27
- */
28
- animationDuration: any;
29
- /**
30
- * Gets or sets the options for customizing the bubbles in maps.
31
- */
32
- bubbleSettings: any;
33
- /**
34
- * Gets or sets the options for customizing the data labels in maps.
35
- */
36
- dataLabelSettings: any;
37
- /**
38
- * Gets or sets the data source for the layer.
39
- * The data bound to the shapes using data source can be used to display the tooltip, marker, and bubble.
40
- * @isobservable true
41
- * @default []
42
- */
43
- dataSource: any;
44
- /**
45
- * Gets or sets the geometry type for the layer in maps. There are two types: Geographic and Normal.
46
- * - Geographic type renders the shape maps with geographical coordinate system.
47
- * - Normal type renders the shape maps using default coordinate system.
48
- * @default Geographic
49
- */
50
- geometryType: any;
51
- /**
52
- * Gets or sets the options for customizing the shapes when the mouse hovers over maps.
53
- */
54
- highlightSettings: any;
55
- /**
56
- * Gets or sets the settings for the shapes to be selected when the maps rendering initially.
57
- * The initial selection of shapes will be performed only when the selection functionality of layer is enabled.
58
- */
59
- initialShapeSelection: any;
60
- /**
61
- * Gets or sets the options for customizing the cluster of markers in maps.
62
- */
63
- markerClusterSettings: any;
64
- /**
65
- * Gets or sets the options for customizing the markers in maps.
66
- */
67
- markerSettings: any;
68
- /**
69
- * Gets or sets the options for customizing the navigation lines in maps.
70
- */
71
- navigationLineSettings: any;
72
- /**
73
- * Gets or sets the properties of the polygon shapes that will be rendered on a map layer.
74
- * The selection and highlight settings for polygon shapes can also be defined.
75
- */
76
- polygonSettings: any;
77
- /**
78
- * Gets or sets the query to select particular data from the layer data source.
79
- * This property is applicable only when the data source is created by data manager.
80
- * @default null
81
- */
82
- query: any;
83
- /**
84
- * Gets or sets the options for customizing the shapes when clicking on the shapes in maps.
85
- */
86
- selectionSettings: any;
87
- /**
88
- * Gets or sets the data for the maps to render.
89
- * The data is normally JSON object with GeoJSON format that defines the shapes and geometries of the map.
90
- * @isobservable true
91
- * @default null
92
- */
93
- shapeData: any;
94
- /**
95
- * Gets or sets the field name from the GeoJSON data to map the shape to the data defined in the layer data source.
96
- * @default 'name'
97
- */
98
- shapeDataPath: any;
99
- /**
100
- * Gets or sets the field name from the data source to map the shape to the data defined in the layer data source.
101
- * @default 'name'
102
- */
103
- shapePropertyPath: any;
104
- /**
105
- * Gets or sets the options to customize the shape of the maps.
106
- */
107
- shapeSettings: any;
108
- /**
109
- * Gets or sets the options for customizing the toggle state of shapes when selecting the legend in maps.
110
- */
111
- toggleLegendSettings: any;
112
- /**
113
- * Gets or sets the options for customizing the tooltip of the layers in maps.
114
- */
115
- tooltipSettings: any;
116
- /**
117
- * Gets or sets the URL of the online map providers.
118
- * The online map providers will be rendered only when the shape data is not set and layer type is set with default value.
119
- * @default ''
120
- */
121
- urlTemplate: any;
122
- /**
123
- * Enables or disables the visibility of the layers in maps.
124
- * @default true
125
- */
126
- visible: any;
127
- constructor(viewContainerRef: ViewContainerRef);
128
- }
129
- /**
130
- * Layer Array Directive
131
- * @private
132
- */
133
- export declare class LayersDirective extends ArrayBase<LayersDirective> {
134
- constructor();
135
- }
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 layer of the maps.
6
+ * ```html
7
+ * <e-layers>
8
+ * <e-layer></e-layer>
9
+ * </e-layers>
10
+ * ```
11
+ */
12
+ export declare class LayerDirective extends ComplexBase<LayerDirective> {
13
+ private viewContainerRef;
14
+ directivePropList: any;
15
+ childInitialShapeSelection: any;
16
+ childMarkerSettings: any;
17
+ childBubbleSettings: any;
18
+ childNavigationLineSettings: any;
19
+ tags: string[];
20
+ /**
21
+ * Gets or sets the type of the layer in maps. There are two types: Layer and SubLayer.
22
+ * @default Layer
23
+ */
24
+ type: any;
25
+ /**
26
+ * Gets or sets the duration of the animation of layers when the zooming is performed in maps.
27
+ * @default 0
28
+ */
29
+ animationDuration: any;
30
+ /**
31
+ * Gets or sets the options for customizing the bubbles in maps.
32
+ */
33
+ bubbleSettings: any;
34
+ /**
35
+ * Gets or sets the options for customizing the data labels in maps.
36
+ */
37
+ dataLabelSettings: any;
38
+ /**
39
+ * Gets or sets the data source for the layer.
40
+ * The data bound to the shapes using data source can be used to display the tooltip, marker, and bubble.
41
+ * @isobservable true
42
+ * @default []
43
+ */
44
+ dataSource: any;
45
+ /**
46
+ * Gets or sets the geometry type for the layer in maps. There are two types: Geographic and Normal.
47
+ * - Geographic type renders the shape maps with geographical coordinate system.
48
+ * - Normal type renders the shape maps using default coordinate system.
49
+ * @default Geographic
50
+ */
51
+ geometryType: any;
52
+ /**
53
+ * Gets or sets the options for customizing the shapes when the mouse hovers over maps.
54
+ */
55
+ highlightSettings: any;
56
+ /**
57
+ * Gets or sets the settings for the shapes to be selected when the maps rendering initially.
58
+ * The initial selection of shapes will be performed only when the selection functionality of layer is enabled.
59
+ */
60
+ initialShapeSelection: any;
61
+ /**
62
+ * Gets or sets the options for customizing the cluster of markers in maps.
63
+ */
64
+ markerClusterSettings: any;
65
+ /**
66
+ * Gets or sets the options for customizing the markers in maps.
67
+ */
68
+ markerSettings: any;
69
+ /**
70
+ * Gets or sets the options for customizing the navigation lines in maps.
71
+ */
72
+ navigationLineSettings: any;
73
+ /**
74
+ * Gets or sets the properties of the polygon shapes that will be rendered on a map layer.
75
+ * The selection and highlight settings for polygon shapes can also be defined.
76
+ */
77
+ polygonSettings: any;
78
+ /**
79
+ * Gets or sets the query to select particular data from the layer data source.
80
+ * This property is applicable only when the data source is created by data manager.
81
+ * @default null
82
+ */
83
+ query: any;
84
+ /**
85
+ * Gets or sets the options for customizing the shapes when clicking on the shapes in maps.
86
+ */
87
+ selectionSettings: any;
88
+ /**
89
+ * Gets or sets the data for the maps to render.
90
+ * The data is normally JSON object with GeoJSON format that defines the shapes and geometries of the map.
91
+ * @isobservable true
92
+ * @default null
93
+ */
94
+ shapeData: any;
95
+ /**
96
+ * Gets or sets the field name from the GeoJSON data to map the shape to the data defined in the layer data source.
97
+ * @default 'name'
98
+ */
99
+ shapeDataPath: any;
100
+ /**
101
+ * Gets or sets the field name from the data source to map the shape to the data defined in the layer data source.
102
+ * @default 'name'
103
+ */
104
+ shapePropertyPath: any;
105
+ /**
106
+ * Gets or sets the options to customize the shape of the maps.
107
+ */
108
+ shapeSettings: any;
109
+ /**
110
+ * Gets or sets the options for customizing the toggle state of shapes when selecting the legend in maps.
111
+ */
112
+ toggleLegendSettings: any;
113
+ /**
114
+ * Gets or sets the options for customizing the tooltip of the layers in maps.
115
+ */
116
+ tooltipSettings: any;
117
+ /**
118
+ * Gets or sets the URL of the online map providers.
119
+ * The online map providers will be rendered only when the shape data is not set and layer type is set with default value.
120
+ * @default ''
121
+ */
122
+ urlTemplate: any;
123
+ /**
124
+ * Enables or disables the visibility of the layers in maps.
125
+ * @default true
126
+ */
127
+ visible: any;
128
+ constructor(viewContainerRef: ViewContainerRef);
129
+ static ɵfac: i0.ɵɵFactoryDeclaration<LayerDirective, never>;
130
+ static ɵdir: i0.ɵɵDirectiveDeclaration<LayerDirective, "e-layers>e-layer", never, { "animationDuration": "animationDuration"; "bubbleSettings": "bubbleSettings"; "dataLabelSettings": "dataLabelSettings"; "dataSource": "dataSource"; "geometryType": "geometryType"; "highlightSettings": "highlightSettings"; "initialShapeSelection": "initialShapeSelection"; "markerClusterSettings": "markerClusterSettings"; "markerSettings": "markerSettings"; "navigationLineSettings": "navigationLineSettings"; "polygonSettings": "polygonSettings"; "query": "query"; "selectionSettings": "selectionSettings"; "shapeData": "shapeData"; "shapeDataPath": "shapeDataPath"; "shapePropertyPath": "shapePropertyPath"; "shapeSettings": "shapeSettings"; "toggleLegendSettings": "toggleLegendSettings"; "tooltipSettings": "tooltipSettings"; "type": "type"; "urlTemplate": "urlTemplate"; "visible": "visible"; }, {}, ["childInitialShapeSelection", "childMarkerSettings", "childBubbleSettings", "childNavigationLineSettings"]>;
131
+ }
132
+ /**
133
+ * Layer Array Directive
134
+ * @private
135
+ */
136
+ export declare class LayersDirective extends ArrayBase<LayersDirective> {
137
+ constructor();
138
+ static ɵfac: i0.ɵɵFactoryDeclaration<LayersDirective, never>;
139
+ static ɵdir: i0.ɵɵDirectiveDeclaration<LayersDirective, "ej-maps>e-layers", never, {}, {}, ["children"]>;
140
+ }
@@ -1,20 +1,26 @@
1
- import { ValueProvider } from '@angular/core';
2
- export declare const BubbleService: ValueProvider;
3
- export declare const LegendService: ValueProvider;
4
- export declare const MarkerService: ValueProvider;
5
- export declare const HighlightService: ValueProvider;
6
- export declare const SelectionService: ValueProvider;
7
- export declare const MapsTooltipService: ValueProvider;
8
- export declare const ZoomService: ValueProvider;
9
- export declare const DataLabelService: ValueProvider;
10
- export declare const NavigationLineService: ValueProvider;
11
- export declare const AnnotationsService: ValueProvider;
12
- export declare const PrintService: ValueProvider;
13
- export declare const PdfExportService: ValueProvider;
14
- export declare const ImageExportService: ValueProvider;
15
- export declare const PolygonService: ValueProvider;
16
- /**
17
- * NgModule definition for the Maps component with providers.
18
- */
19
- export declare class MapsAllModule {
20
- }
1
+ import { ValueProvider } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "@angular/common";
4
+ import * as i2 from "./maps.module";
5
+ export declare const BubbleService: ValueProvider;
6
+ export declare const LegendService: ValueProvider;
7
+ export declare const MarkerService: ValueProvider;
8
+ export declare const HighlightService: ValueProvider;
9
+ export declare const SelectionService: ValueProvider;
10
+ export declare const MapsTooltipService: ValueProvider;
11
+ export declare const ZoomService: ValueProvider;
12
+ export declare const DataLabelService: ValueProvider;
13
+ export declare const NavigationLineService: ValueProvider;
14
+ export declare const AnnotationsService: ValueProvider;
15
+ export declare const PrintService: ValueProvider;
16
+ export declare const PdfExportService: ValueProvider;
17
+ export declare const ImageExportService: ValueProvider;
18
+ export declare const PolygonService: ValueProvider;
19
+ /**
20
+ * NgModule definition for the Maps component with providers.
21
+ */
22
+ export declare class MapsAllModule {
23
+ static ɵfac: i0.ɵɵFactoryDeclaration<MapsAllModule, never>;
24
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MapsAllModule, never, [typeof i1.CommonModule, typeof i2.MapsModule], [typeof i2.MapsModule]>;
25
+ static ɵinj: i0.ɵɵInjectorDeclaration<MapsAllModule>;
26
+ }
@@ -1,70 +1,73 @@
1
- import { ElementRef, ViewContainerRef, QueryList, Renderer2, Injector } from '@angular/core';
2
- import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
- import { Maps } from '@syncfusion/ej2-maps';
4
- import { LayersDirective } from './layers.directive';
5
- import { AnnotationsDirective } from './annotations.directive';
6
- export declare const inputs: string[];
7
- export declare const outputs: string[];
8
- export declare const twoWays: string[];
9
- /**
10
- * Represents the Angular Maps component.
11
- * It is ideal for rendering maps from GeoJSON data or other map providers like OpenStreetMap, Google Maps, Bing Maps, etc that has rich feature set that includes markers, labels, bubbles and much more.
12
- * ```html
13
- * <ej-maps></ej-maps>
14
- * ```
15
- */
16
- export declare class MapsComponent extends Maps implements IComponentBase {
17
- private ngEle;
18
- private srenderer;
19
- private viewContainerRef;
20
- private injector;
21
- context: any;
22
- tagObjects: any;
23
- animationComplete: any;
24
- annotationRendering: any;
25
- beforePrint: any;
26
- bubbleClick: any;
27
- bubbleMouseMove: any;
28
- bubbleRendering: any;
29
- click: any;
30
- dataLabelRendering: any;
31
- doubleClick: any;
32
- itemHighlight: any;
33
- itemSelection: any;
34
- layerRendering: any;
35
- legendRendering: any;
36
- load: any;
37
- loaded: any;
38
- markerClick: any;
39
- markerClusterClick: any;
40
- markerClusterMouseMove: any;
41
- markerClusterRendering: any;
42
- markerDragEnd: any;
43
- markerDragStart: any;
44
- markerMouseMove: any;
45
- markerRendering: any;
46
- mouseMove: any;
47
- onclick: any;
48
- pan: any;
49
- panComplete: any;
50
- resize: any;
51
- rightClick: any;
52
- shapeHighlight: any;
53
- shapeRendering: any;
54
- shapeSelected: any;
55
- tooltipRender: any;
56
- tooltipRenderComplete: any;
57
- zoom: any;
58
- zoomComplete: any;
59
- dataSourceChange: any;
60
- childLayers: QueryList<LayersDirective>;
61
- childAnnotations: QueryList<AnnotationsDirective>;
62
- tags: string[];
63
- constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
64
- ngOnInit(): void;
65
- ngAfterViewInit(): void;
66
- ngOnDestroy(): void;
67
- ngAfterContentChecked(): void;
68
- registerEvents: (eventList: string[]) => void;
69
- addTwoWay: (propList: string[]) => void;
70
- }
1
+ import { ElementRef, ViewContainerRef, QueryList, Renderer2, Injector } from '@angular/core';
2
+ import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
+ import { Maps } from '@syncfusion/ej2-maps';
4
+ import { LayersDirective } from './layers.directive';
5
+ import { AnnotationsDirective } from './annotations.directive';
6
+ import * as i0 from "@angular/core";
7
+ export declare const inputs: string[];
8
+ export declare const outputs: string[];
9
+ export declare const twoWays: string[];
10
+ /**
11
+ * Represents the Angular Maps component.
12
+ * It is ideal for rendering maps from GeoJSON data or other map providers like OpenStreetMap, Google Maps, Bing Maps, etc that has rich feature set that includes markers, labels, bubbles and much more.
13
+ * ```html
14
+ * <ej-maps></ej-maps>
15
+ * ```
16
+ */
17
+ export declare class MapsComponent extends Maps implements IComponentBase {
18
+ private ngEle;
19
+ private srenderer;
20
+ private viewContainerRef;
21
+ private injector;
22
+ context: any;
23
+ tagObjects: any;
24
+ animationComplete: any;
25
+ annotationRendering: any;
26
+ beforePrint: any;
27
+ bubbleClick: any;
28
+ bubbleMouseMove: any;
29
+ bubbleRendering: any;
30
+ click: any;
31
+ dataLabelRendering: any;
32
+ doubleClick: any;
33
+ itemHighlight: any;
34
+ itemSelection: any;
35
+ layerRendering: any;
36
+ legendRendering: any;
37
+ load: any;
38
+ loaded: any;
39
+ markerClick: any;
40
+ markerClusterClick: any;
41
+ markerClusterMouseMove: any;
42
+ markerClusterRendering: any;
43
+ markerDragEnd: any;
44
+ markerDragStart: any;
45
+ markerMouseMove: any;
46
+ markerRendering: any;
47
+ mouseMove: any;
48
+ onclick: any;
49
+ pan: any;
50
+ panComplete: any;
51
+ resize: any;
52
+ rightClick: any;
53
+ shapeHighlight: any;
54
+ shapeRendering: any;
55
+ shapeSelected: any;
56
+ tooltipRender: any;
57
+ tooltipRenderComplete: any;
58
+ zoom: any;
59
+ zoomComplete: any;
60
+ dataSourceChange: any;
61
+ childLayers: QueryList<LayersDirective>;
62
+ childAnnotations: QueryList<AnnotationsDirective>;
63
+ tags: string[];
64
+ constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
65
+ ngOnInit(): void;
66
+ ngAfterViewInit(): void;
67
+ ngOnDestroy(): void;
68
+ ngAfterContentChecked(): void;
69
+ registerEvents: (eventList: string[]) => void;
70
+ addTwoWay: (propList: string[]) => void;
71
+ static ɵfac: i0.ɵɵFactoryDeclaration<MapsComponent, never>;
72
+ static ɵcmp: i0.ɵɵComponentDeclaration<MapsComponent, "ejs-maps", never, { "allowImageExport": "allowImageExport"; "allowPdfExport": "allowPdfExport"; "allowPrint": "allowPrint"; "annotations": "annotations"; "background": "background"; "baseLayerIndex": "baseLayerIndex"; "border": "border"; "centerPosition": "centerPosition"; "description": "description"; "enablePersistence": "enablePersistence"; "enableRtl": "enableRtl"; "format": "format"; "height": "height"; "layers": "layers"; "legendSettings": "legendSettings"; "locale": "locale"; "mapsArea": "mapsArea"; "margin": "margin"; "projectionType": "projectionType"; "tabIndex": "tabIndex"; "theme": "theme"; "titleSettings": "titleSettings"; "tooltipDisplayMode": "tooltipDisplayMode"; "useGroupingSeparator": "useGroupingSeparator"; "width": "width"; "zoomSettings": "zoomSettings"; }, { "animationComplete": "animationComplete"; "annotationRendering": "annotationRendering"; "beforePrint": "beforePrint"; "bubbleClick": "bubbleClick"; "bubbleMouseMove": "bubbleMouseMove"; "bubbleRendering": "bubbleRendering"; "click": "click"; "dataLabelRendering": "dataLabelRendering"; "doubleClick": "doubleClick"; "itemHighlight": "itemHighlight"; "itemSelection": "itemSelection"; "layerRendering": "layerRendering"; "legendRendering": "legendRendering"; "load": "load"; "loaded": "loaded"; "markerClick": "markerClick"; "markerClusterClick": "markerClusterClick"; "markerClusterMouseMove": "markerClusterMouseMove"; "markerClusterRendering": "markerClusterRendering"; "markerDragEnd": "markerDragEnd"; "markerDragStart": "markerDragStart"; "markerMouseMove": "markerMouseMove"; "markerRendering": "markerRendering"; "mouseMove": "mouseMove"; "onclick": "onclick"; "pan": "pan"; "panComplete": "panComplete"; "resize": "resize"; "rightClick": "rightClick"; "shapeHighlight": "shapeHighlight"; "shapeRendering": "shapeRendering"; "shapeSelected": "shapeSelected"; "tooltipRender": "tooltipRender"; "tooltipRenderComplete": "tooltipRenderComplete"; "zoom": "zoom"; "zoomComplete": "zoomComplete"; "dataSourceChange": "dataSourceChange"; }, ["childLayers", "childAnnotations"], never>;
73
+ }
@@ -1,5 +1,18 @@
1
- /**
2
- * NgModule definition for the Maps component.
3
- */
4
- export declare class MapsModule {
5
- }
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./maps.component";
3
+ import * as i2 from "./initialshapeselection.directive";
4
+ import * as i3 from "./markersettings.directive";
5
+ import * as i4 from "./colormapping.directive";
6
+ import * as i5 from "./bubblesettings.directive";
7
+ import * as i6 from "./navigationlinesettings.directive";
8
+ import * as i7 from "./layers.directive";
9
+ import * as i8 from "./annotations.directive";
10
+ import * as i9 from "@angular/common";
11
+ /**
12
+ * NgModule definition for the Maps component.
13
+ */
14
+ export declare class MapsModule {
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<MapsModule, never>;
16
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MapsModule, [typeof i1.MapsComponent, typeof i2.InitialShapeSelectionDirective, typeof i2.InitialShapeSelectionsDirective, typeof i3.MarkerDirective, typeof i3.MarkersDirective, typeof i4.ColorMappingDirective, typeof i4.ColorMappingsDirective, typeof i5.BubbleDirective, typeof i5.BubblesDirective, typeof i6.NavigationLineDirective, typeof i6.NavigationLinesDirective, typeof i7.LayerDirective, typeof i7.LayersDirective, typeof i8.AnnotationDirective, typeof i8.AnnotationsDirective], [typeof i9.CommonModule], [typeof i1.MapsComponent, typeof i2.InitialShapeSelectionDirective, typeof i2.InitialShapeSelectionsDirective, typeof i3.MarkerDirective, typeof i3.MarkersDirective, typeof i4.ColorMappingDirective, typeof i4.ColorMappingsDirective, typeof i5.BubbleDirective, typeof i5.BubblesDirective, typeof i6.NavigationLineDirective, typeof i6.NavigationLinesDirective, typeof i7.LayerDirective, typeof i7.LayersDirective, typeof i8.AnnotationDirective, typeof i8.AnnotationsDirective]>;
17
+ static ɵinj: i0.ɵɵInjectorDeclaration<MapsModule>;
18
+ }