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

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 +646 -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 +28 -46
  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
@@ -0,0 +1,737 @@
1
+ import * as i0 from '@angular/core';
2
+ import { Directive, ContentChildren, ContentChild, Component, ChangeDetectionStrategy, NgModule } from '@angular/core';
3
+ import { ComplexBase, setValue, ArrayBase, Template, ComponentBase, ComponentMixins } from '@syncfusion/ej2-angular-base';
4
+ import { __decorate } from 'tslib';
5
+ import { Maps, Bubble, Legend, Marker, Highlight, Selection, MapsTooltip, Zoom, DataLabel, NavigationLine, Annotations, Print, PdfExport, ImageExport, Polygon } from '@syncfusion/ej2-maps';
6
+ export * from '@syncfusion/ej2-maps';
7
+ import { CommonModule } from '@angular/common';
8
+
9
+ let input$6 = ['shapePath', 'shapeValue'];
10
+ let outputs$7 = [];
11
+ /**
12
+ * Represents the directive to configure the selection of the shapes when the maps is initially rendered.
13
+ * ```html
14
+ * <e-layers>
15
+ * <e-layer>
16
+ * <e-initialShapeSelections>
17
+ * <e-initialShapeSelection>
18
+ * </e-initialShapeSelection>
19
+ * </e-initialShapeSelections>
20
+ * </e-layer>
21
+ * </e-layers>
22
+ * ```
23
+ */
24
+ class InitialShapeSelectionDirective extends ComplexBase {
25
+ constructor(viewContainerRef) {
26
+ super();
27
+ this.viewContainerRef = viewContainerRef;
28
+ setValue('currentInstance', this, this.viewContainerRef);
29
+ this.registerEvents(outputs$7);
30
+ this.directivePropList = input$6;
31
+ }
32
+ }
33
+ InitialShapeSelectionDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: InitialShapeSelectionDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
34
+ InitialShapeSelectionDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: InitialShapeSelectionDirective, selector: "e-layer>e-initialShapeSelections>e-initialShapeSelection", inputs: { shapePath: "shapePath", shapeValue: "shapeValue" }, usesInheritance: true, ngImport: i0 });
35
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: InitialShapeSelectionDirective, decorators: [{
36
+ type: Directive,
37
+ args: [{
38
+ selector: 'e-layer>e-initialShapeSelections>e-initialShapeSelection',
39
+ inputs: input$6,
40
+ outputs: outputs$7,
41
+ queries: {}
42
+ }]
43
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
44
+ /**
45
+ * InitialShapeSelection Array Directive
46
+ * @private
47
+ */
48
+ class InitialShapeSelectionsDirective extends ArrayBase {
49
+ constructor() {
50
+ super('initialshapeselection');
51
+ }
52
+ }
53
+ InitialShapeSelectionsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: InitialShapeSelectionsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
54
+ InitialShapeSelectionsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: InitialShapeSelectionsDirective, selector: "e-layer>e-initialShapeSelections", queries: [{ propertyName: "children", predicate: InitialShapeSelectionDirective }], usesInheritance: true, ngImport: i0 });
55
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: InitialShapeSelectionsDirective, decorators: [{
56
+ type: Directive,
57
+ args: [{
58
+ selector: 'e-layer>e-initialShapeSelections',
59
+ queries: {
60
+ children: new ContentChildren(InitialShapeSelectionDirective)
61
+ },
62
+ }]
63
+ }], ctorParameters: function () { return []; } });
64
+
65
+ let input$5 = ['animationDelay', 'animationDuration', 'border', 'clusterSettings', 'colorValuePath', 'dashArray', 'dataSource', 'enableDrag', 'fill', 'height', 'heightValuePath', 'highlightSettings', 'imageUrl', 'imageUrlValuePath', 'initialMarkerSelection', 'latitudeValuePath', 'legendText', 'longitudeValuePath', 'offset', 'opacity', 'query', 'selectionSettings', 'shape', 'shapeValuePath', 'template', 'tooltipSettings', 'visible', 'width', 'widthValuePath'];
66
+ let outputs$6 = [];
67
+ /**
68
+ * Represents the directive to define the markers in the maps.
69
+ * ```html
70
+ * <e-layers>
71
+ * <e-layer>
72
+ * <e-markerSettings>
73
+ * <e-markerSetting>
74
+ * </e-markerSetting>
75
+ * </e-markerSettings>
76
+ * </e-layer>
77
+ * </e-layers>
78
+ * ```
79
+ */
80
+ class MarkerDirective extends ComplexBase {
81
+ constructor(viewContainerRef) {
82
+ super();
83
+ this.viewContainerRef = viewContainerRef;
84
+ setValue('currentInstance', this, this.viewContainerRef);
85
+ this.registerEvents(outputs$6);
86
+ this.directivePropList = input$5;
87
+ }
88
+ }
89
+ MarkerDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MarkerDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
90
+ MarkerDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: MarkerDirective, selector: "e-layer>e-markerSettings>e-markerSetting", inputs: { animationDelay: "animationDelay", animationDuration: "animationDuration", border: "border", clusterSettings: "clusterSettings", colorValuePath: "colorValuePath", dashArray: "dashArray", dataSource: "dataSource", enableDrag: "enableDrag", fill: "fill", height: "height", heightValuePath: "heightValuePath", highlightSettings: "highlightSettings", imageUrl: "imageUrl", imageUrlValuePath: "imageUrlValuePath", initialMarkerSelection: "initialMarkerSelection", latitudeValuePath: "latitudeValuePath", legendText: "legendText", longitudeValuePath: "longitudeValuePath", offset: "offset", opacity: "opacity", query: "query", selectionSettings: "selectionSettings", shape: "shape", shapeValuePath: "shapeValuePath", template: "template", tooltipSettings: "tooltipSettings", visible: "visible", width: "width", widthValuePath: "widthValuePath" }, queries: [{ propertyName: "template", first: true, predicate: ["template"], descendants: true }, { propertyName: "tooltipSettings_template", first: true, predicate: ["tooltipSettingsTemplate"], descendants: true }], usesInheritance: true, ngImport: i0 });
91
+ __decorate([
92
+ Template()
93
+ ], MarkerDirective.prototype, "template", void 0);
94
+ __decorate([
95
+ Template()
96
+ ], MarkerDirective.prototype, "tooltipSettings_template", void 0);
97
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MarkerDirective, decorators: [{
98
+ type: Directive,
99
+ args: [{
100
+ selector: 'e-layer>e-markerSettings>e-markerSetting',
101
+ inputs: input$5,
102
+ outputs: outputs$6,
103
+ queries: {}
104
+ }]
105
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { template: [{
106
+ type: ContentChild,
107
+ args: ['template']
108
+ }], tooltipSettings_template: [{
109
+ type: ContentChild,
110
+ args: ['tooltipSettingsTemplate']
111
+ }] } });
112
+ /**
113
+ * Marker Array Directive
114
+ * @private
115
+ */
116
+ class MarkersDirective extends ArrayBase {
117
+ constructor() {
118
+ super('markersettings');
119
+ }
120
+ }
121
+ MarkersDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MarkersDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
122
+ MarkersDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: MarkersDirective, selector: "e-layer>e-markerSettings", queries: [{ propertyName: "children", predicate: MarkerDirective }], usesInheritance: true, ngImport: i0 });
123
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MarkersDirective, decorators: [{
124
+ type: Directive,
125
+ args: [{
126
+ selector: 'e-layer>e-markerSettings',
127
+ queries: {
128
+ children: new ContentChildren(MarkerDirective)
129
+ },
130
+ }]
131
+ }], ctorParameters: function () { return []; } });
132
+
133
+ let input$4 = ['color', 'from', 'label', 'maxOpacity', 'minOpacity', 'showLegend', 'to', 'value'];
134
+ let outputs$5 = [];
135
+ /**
136
+ * Represents the directive to define the bubble color mapping in the maps.
137
+ * ```html
138
+ * <e-layers>
139
+ * <e-layer>
140
+ * <e-bubbleSettings>
141
+ * <e-colorMappings>
142
+ * <e-colorMapping>
143
+ * </e-colorMapping>
144
+ * </e-colorMappings>
145
+ * </e-bubbleSettings>
146
+ * </e-layer>
147
+ * </e-layers>
148
+ * ```
149
+ */
150
+ class ColorMappingDirective extends ComplexBase {
151
+ constructor(viewContainerRef) {
152
+ super();
153
+ this.viewContainerRef = viewContainerRef;
154
+ setValue('currentInstance', this, this.viewContainerRef);
155
+ this.registerEvents(outputs$5);
156
+ this.directivePropList = input$4;
157
+ }
158
+ }
159
+ ColorMappingDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ColorMappingDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
160
+ ColorMappingDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: ColorMappingDirective, selector: "e-bubbleSettings>e-colorMappings>e-colorMapping", inputs: { color: "color", from: "from", label: "label", maxOpacity: "maxOpacity", minOpacity: "minOpacity", showLegend: "showLegend", to: "to", value: "value" }, usesInheritance: true, ngImport: i0 });
161
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ColorMappingDirective, decorators: [{
162
+ type: Directive,
163
+ args: [{
164
+ selector: 'e-bubbleSettings>e-colorMappings>e-colorMapping',
165
+ inputs: input$4,
166
+ outputs: outputs$5,
167
+ queries: {}
168
+ }]
169
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
170
+ /**
171
+ * ColorMapping Array Directive
172
+ * @private
173
+ */
174
+ class ColorMappingsDirective extends ArrayBase {
175
+ constructor() {
176
+ super('colormapping');
177
+ }
178
+ }
179
+ ColorMappingsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ColorMappingsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
180
+ ColorMappingsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: ColorMappingsDirective, selector: "e-bubbleSettings>e-colorMappings", queries: [{ propertyName: "children", predicate: ColorMappingDirective }], usesInheritance: true, ngImport: i0 });
181
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ColorMappingsDirective, decorators: [{
182
+ type: Directive,
183
+ args: [{
184
+ selector: 'e-bubbleSettings>e-colorMappings',
185
+ queries: {
186
+ children: new ContentChildren(ColorMappingDirective)
187
+ },
188
+ }]
189
+ }], ctorParameters: function () { return []; } });
190
+
191
+ let input$3 = ['animationDelay', 'animationDuration', 'border', 'bubbleType', 'colorMapping', 'colorValuePath', 'dataSource', 'fill', 'highlightSettings', 'maxRadius', 'minRadius', 'opacity', 'query', 'selectionSettings', 'tooltipSettings', 'valuePath', 'visible'];
192
+ let outputs$4 = [];
193
+ /**
194
+ * Represents the directive to define the bubbles in the maps.
195
+ * ```html
196
+ * <e-layers>
197
+ * <e-layer>
198
+ * <e-bubbleSettings>
199
+ * <e-bubbleSetting>
200
+ * </e-bubbleSetting>
201
+ * </e-bubbleSettings>
202
+ * </e-layer>
203
+ * </e-layers>
204
+ * ```
205
+ */
206
+ class BubbleDirective extends ComplexBase {
207
+ constructor(viewContainerRef) {
208
+ super();
209
+ this.viewContainerRef = viewContainerRef;
210
+ this.tags = ['colorMapping'];
211
+ setValue('currentInstance', this, this.viewContainerRef);
212
+ this.registerEvents(outputs$4);
213
+ this.directivePropList = input$3;
214
+ }
215
+ }
216
+ BubbleDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: BubbleDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
217
+ BubbleDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: BubbleDirective, selector: "e-layer>e-bubbleSettings>e-bubbleSetting", inputs: { animationDelay: "animationDelay", animationDuration: "animationDuration", border: "border", bubbleType: "bubbleType", colorMapping: "colorMapping", colorValuePath: "colorValuePath", dataSource: "dataSource", fill: "fill", highlightSettings: "highlightSettings", maxRadius: "maxRadius", minRadius: "minRadius", opacity: "opacity", query: "query", selectionSettings: "selectionSettings", tooltipSettings: "tooltipSettings", valuePath: "valuePath", visible: "visible" }, queries: [{ propertyName: "tooltipSettings_template", first: true, predicate: ["tooltipSettingsTemplate"], descendants: true }, { propertyName: "childColorMapping", first: true, predicate: ColorMappingsDirective, descendants: true }], usesInheritance: true, ngImport: i0 });
218
+ __decorate([
219
+ Template()
220
+ ], BubbleDirective.prototype, "tooltipSettings_template", void 0);
221
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: BubbleDirective, decorators: [{
222
+ type: Directive,
223
+ args: [{
224
+ selector: 'e-layer>e-bubbleSettings>e-bubbleSetting',
225
+ inputs: input$3,
226
+ outputs: outputs$4,
227
+ queries: {
228
+ childColorMapping: new ContentChild(ColorMappingsDirective)
229
+ }
230
+ }]
231
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { tooltipSettings_template: [{
232
+ type: ContentChild,
233
+ args: ['tooltipSettingsTemplate']
234
+ }] } });
235
+ /**
236
+ * Bubble Array Directive
237
+ * @private
238
+ */
239
+ class BubblesDirective extends ArrayBase {
240
+ constructor() {
241
+ super('bubblesettings');
242
+ }
243
+ }
244
+ BubblesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: BubblesDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
245
+ BubblesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: BubblesDirective, selector: "e-layer>e-bubbleSettings", queries: [{ propertyName: "children", predicate: BubbleDirective }], usesInheritance: true, ngImport: i0 });
246
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: BubblesDirective, decorators: [{
247
+ type: Directive,
248
+ args: [{
249
+ selector: 'e-layer>e-bubbleSettings',
250
+ queries: {
251
+ children: new ContentChildren(BubbleDirective)
252
+ },
253
+ }]
254
+ }], ctorParameters: function () { return []; } });
255
+
256
+ let input$2 = ['angle', 'arrowSettings', 'color', 'dashArray', 'highlightSettings', 'latitude', 'longitude', 'selectionSettings', 'visible', 'width'];
257
+ let outputs$3 = [];
258
+ /**
259
+ * Represents the directive to define the navigation lines in the maps.
260
+ * ```html
261
+ * <e-layers>
262
+ * <e-layer>
263
+ * <e-navigationLineSettings>
264
+ * <e-navigationLineSetting>
265
+ * </e-navigationLineSetting>
266
+ * </e-navigationLineSettings>
267
+ * </e-layer>
268
+ * </e-layers>
269
+ * ```
270
+ */
271
+ class NavigationLineDirective extends ComplexBase {
272
+ constructor(viewContainerRef) {
273
+ super();
274
+ this.viewContainerRef = viewContainerRef;
275
+ setValue('currentInstance', this, this.viewContainerRef);
276
+ this.registerEvents(outputs$3);
277
+ this.directivePropList = input$2;
278
+ }
279
+ }
280
+ NavigationLineDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NavigationLineDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
281
+ NavigationLineDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: NavigationLineDirective, selector: "e-layer>e-navigationLineSettings>e-navigationLineSetting", inputs: { angle: "angle", arrowSettings: "arrowSettings", color: "color", dashArray: "dashArray", highlightSettings: "highlightSettings", latitude: "latitude", longitude: "longitude", selectionSettings: "selectionSettings", visible: "visible", width: "width" }, queries: [{ propertyName: "tooltipSettings_template", first: true, predicate: ["tooltipSettingsTemplate"], descendants: true }], usesInheritance: true, ngImport: i0 });
282
+ __decorate([
283
+ Template()
284
+ ], NavigationLineDirective.prototype, "tooltipSettings_template", void 0);
285
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NavigationLineDirective, decorators: [{
286
+ type: Directive,
287
+ args: [{
288
+ selector: 'e-layer>e-navigationLineSettings>e-navigationLineSetting',
289
+ inputs: input$2,
290
+ outputs: outputs$3,
291
+ queries: {}
292
+ }]
293
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { tooltipSettings_template: [{
294
+ type: ContentChild,
295
+ args: ['tooltipSettingsTemplate']
296
+ }] } });
297
+ /**
298
+ * NavigationLine Array Directive
299
+ * @private
300
+ */
301
+ class NavigationLinesDirective extends ArrayBase {
302
+ constructor() {
303
+ super('navigationlinesettings');
304
+ }
305
+ }
306
+ NavigationLinesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NavigationLinesDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
307
+ NavigationLinesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: NavigationLinesDirective, selector: "e-layer>e-navigationLineSettings", queries: [{ propertyName: "children", predicate: NavigationLineDirective }], usesInheritance: true, ngImport: i0 });
308
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: NavigationLinesDirective, decorators: [{
309
+ type: Directive,
310
+ args: [{
311
+ selector: 'e-layer>e-navigationLineSettings',
312
+ queries: {
313
+ children: new ContentChildren(NavigationLineDirective)
314
+ },
315
+ }]
316
+ }], ctorParameters: function () { return []; } });
317
+
318
+ let input$1 = ['animationDuration', 'bubbleSettings', 'dataLabelSettings', 'dataSource', 'geometryType', 'highlightSettings', 'initialShapeSelection', 'markerClusterSettings', 'markerSettings', 'navigationLineSettings', 'polygonSettings', 'query', 'selectionSettings', 'shapeData', 'shapeDataPath', 'shapePropertyPath', 'shapeSettings', 'toggleLegendSettings', 'tooltipSettings', 'type', 'urlTemplate', 'visible'];
319
+ let outputs$2 = [];
320
+ /**
321
+ * Represents the directive to define the layer of the maps.
322
+ * ```html
323
+ * <e-layers>
324
+ * <e-layer></e-layer>
325
+ * </e-layers>
326
+ * ```
327
+ */
328
+ class LayerDirective extends ComplexBase {
329
+ constructor(viewContainerRef) {
330
+ super();
331
+ this.viewContainerRef = viewContainerRef;
332
+ this.tags = ['initialShapeSelection', 'markerSettings', 'bubbleSettings', 'navigationLineSettings'];
333
+ setValue('currentInstance', this, this.viewContainerRef);
334
+ this.registerEvents(outputs$2);
335
+ this.directivePropList = input$1;
336
+ }
337
+ }
338
+ LayerDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: LayerDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
339
+ LayerDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: LayerDirective, selector: "e-layers>e-layer", inputs: { 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" }, queries: [{ propertyName: "childInitialShapeSelection", first: true, predicate: InitialShapeSelectionsDirective, descendants: true }, { propertyName: "childMarkerSettings", first: true, predicate: MarkersDirective, descendants: true }, { propertyName: "childBubbleSettings", first: true, predicate: BubblesDirective, descendants: true }, { propertyName: "childNavigationLineSettings", first: true, predicate: NavigationLinesDirective, descendants: true }], usesInheritance: true, ngImport: i0 });
340
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: LayerDirective, decorators: [{
341
+ type: Directive,
342
+ args: [{
343
+ selector: 'e-layers>e-layer',
344
+ inputs: input$1,
345
+ outputs: outputs$2,
346
+ queries: {
347
+ childInitialShapeSelection: new ContentChild(InitialShapeSelectionsDirective),
348
+ childMarkerSettings: new ContentChild(MarkersDirective),
349
+ childBubbleSettings: new ContentChild(BubblesDirective),
350
+ childNavigationLineSettings: new ContentChild(NavigationLinesDirective)
351
+ }
352
+ }]
353
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
354
+ /**
355
+ * Layer Array Directive
356
+ * @private
357
+ */
358
+ class LayersDirective extends ArrayBase {
359
+ constructor() {
360
+ super('layers');
361
+ }
362
+ }
363
+ LayersDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: LayersDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
364
+ LayersDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: LayersDirective, selector: "ej-maps>e-layers", queries: [{ propertyName: "children", predicate: LayerDirective }], usesInheritance: true, ngImport: i0 });
365
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: LayersDirective, decorators: [{
366
+ type: Directive,
367
+ args: [{
368
+ selector: 'ej-maps>e-layers',
369
+ queries: {
370
+ children: new ContentChildren(LayerDirective)
371
+ },
372
+ }]
373
+ }], ctorParameters: function () { return []; } });
374
+
375
+ let input = ['content', 'horizontalAlignment', 'verticalAlignment', 'x', 'y', 'zIndex'];
376
+ let outputs$1 = [];
377
+ /**
378
+ * Represents the directive to define the annotations in the maps.
379
+ * ```html
380
+ * <e-maps-annotations>
381
+ * <e-maps-annotation></e-maps-annotation>
382
+ * </e-maps-annotations>
383
+ * ```
384
+ */
385
+ class AnnotationDirective extends ComplexBase {
386
+ constructor(viewContainerRef) {
387
+ super();
388
+ this.viewContainerRef = viewContainerRef;
389
+ setValue('currentInstance', this, this.viewContainerRef);
390
+ this.registerEvents(outputs$1);
391
+ this.directivePropList = input;
392
+ }
393
+ }
394
+ AnnotationDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AnnotationDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
395
+ AnnotationDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: AnnotationDirective, selector: "e-maps-annotations>e-maps-annotation", inputs: { content: "content", horizontalAlignment: "horizontalAlignment", verticalAlignment: "verticalAlignment", x: "x", y: "y", zIndex: "zIndex" }, queries: [{ propertyName: "content", first: true, predicate: ["content"], descendants: true }], usesInheritance: true, ngImport: i0 });
396
+ __decorate([
397
+ Template()
398
+ ], AnnotationDirective.prototype, "content", void 0);
399
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AnnotationDirective, decorators: [{
400
+ type: Directive,
401
+ args: [{
402
+ selector: 'e-maps-annotations>e-maps-annotation',
403
+ inputs: input,
404
+ outputs: outputs$1,
405
+ queries: {}
406
+ }]
407
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { content: [{
408
+ type: ContentChild,
409
+ args: ['content']
410
+ }] } });
411
+ /**
412
+ * Annotation Array Directive
413
+ * @private
414
+ */
415
+ class AnnotationsDirective extends ArrayBase {
416
+ constructor() {
417
+ super('annotations');
418
+ }
419
+ }
420
+ AnnotationsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AnnotationsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
421
+ AnnotationsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: AnnotationsDirective, selector: "ej-maps>e-maps-annotations", queries: [{ propertyName: "children", predicate: AnnotationDirective }], usesInheritance: true, ngImport: i0 });
422
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AnnotationsDirective, decorators: [{
423
+ type: Directive,
424
+ args: [{
425
+ selector: 'ej-maps>e-maps-annotations',
426
+ queries: {
427
+ children: new ContentChildren(AnnotationDirective)
428
+ },
429
+ }]
430
+ }], ctorParameters: function () { return []; } });
431
+
432
+ const inputs = ['allowImageExport', 'allowPdfExport', 'allowPrint', 'annotations', 'background', 'baseLayerIndex', 'border', 'centerPosition', 'description', 'enablePersistence', 'enableRtl', 'format', 'height', 'layers', 'legendSettings', 'locale', 'mapsArea', 'margin', 'projectionType', 'tabIndex', 'theme', 'titleSettings', 'tooltipDisplayMode', 'useGroupingSeparator', 'width', 'zoomSettings'];
433
+ const outputs = ['animationComplete', 'annotationRendering', 'beforePrint', 'bubbleClick', 'bubbleMouseMove', 'bubbleRendering', 'click', 'dataLabelRendering', 'doubleClick', 'itemHighlight', 'itemSelection', 'layerRendering', 'legendRendering', 'load', 'loaded', 'markerClick', 'markerClusterClick', 'markerClusterMouseMove', 'markerClusterRendering', 'markerDragEnd', 'markerDragStart', 'markerMouseMove', 'markerRendering', 'mouseMove', 'onclick', 'pan', 'panComplete', 'resize', 'rightClick', 'shapeHighlight', 'shapeRendering', 'shapeSelected', 'tooltipRender', 'tooltipRenderComplete', 'zoom', 'zoomComplete', 'dataSourceChange'];
434
+ const twoWays = ['dataSource'];
435
+ /**
436
+ * Represents the Angular Maps component.
437
+ * 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.
438
+ * ```html
439
+ * <ej-maps></ej-maps>
440
+ * ```
441
+ */
442
+ let MapsComponent = class MapsComponent extends Maps {
443
+ constructor(ngEle, srenderer, viewContainerRef, injector) {
444
+ super();
445
+ this.ngEle = ngEle;
446
+ this.srenderer = srenderer;
447
+ this.viewContainerRef = viewContainerRef;
448
+ this.injector = injector;
449
+ this.tags = ['layers', 'annotations'];
450
+ this.element = this.ngEle.nativeElement;
451
+ this.injectedModules = this.injectedModules || [];
452
+ try {
453
+ let mod = this.injector.get('MapsBubble');
454
+ if (this.injectedModules.indexOf(mod) === -1) {
455
+ this.injectedModules.push(mod);
456
+ }
457
+ }
458
+ catch { }
459
+ try {
460
+ let mod = this.injector.get('MapsLegend');
461
+ if (this.injectedModules.indexOf(mod) === -1) {
462
+ this.injectedModules.push(mod);
463
+ }
464
+ }
465
+ catch { }
466
+ try {
467
+ let mod = this.injector.get('MapsMarker');
468
+ if (this.injectedModules.indexOf(mod) === -1) {
469
+ this.injectedModules.push(mod);
470
+ }
471
+ }
472
+ catch { }
473
+ try {
474
+ let mod = this.injector.get('MapsHighlight');
475
+ if (this.injectedModules.indexOf(mod) === -1) {
476
+ this.injectedModules.push(mod);
477
+ }
478
+ }
479
+ catch { }
480
+ try {
481
+ let mod = this.injector.get('MapsSelection');
482
+ if (this.injectedModules.indexOf(mod) === -1) {
483
+ this.injectedModules.push(mod);
484
+ }
485
+ }
486
+ catch { }
487
+ try {
488
+ let mod = this.injector.get('MapsMapsTooltip');
489
+ if (this.injectedModules.indexOf(mod) === -1) {
490
+ this.injectedModules.push(mod);
491
+ }
492
+ }
493
+ catch { }
494
+ try {
495
+ let mod = this.injector.get('MapsZoom');
496
+ if (this.injectedModules.indexOf(mod) === -1) {
497
+ this.injectedModules.push(mod);
498
+ }
499
+ }
500
+ catch { }
501
+ try {
502
+ let mod = this.injector.get('MapsDataLabel');
503
+ if (this.injectedModules.indexOf(mod) === -1) {
504
+ this.injectedModules.push(mod);
505
+ }
506
+ }
507
+ catch { }
508
+ try {
509
+ let mod = this.injector.get('MapsNavigationLine');
510
+ if (this.injectedModules.indexOf(mod) === -1) {
511
+ this.injectedModules.push(mod);
512
+ }
513
+ }
514
+ catch { }
515
+ try {
516
+ let mod = this.injector.get('MapsAnnotations');
517
+ if (this.injectedModules.indexOf(mod) === -1) {
518
+ this.injectedModules.push(mod);
519
+ }
520
+ }
521
+ catch { }
522
+ try {
523
+ let mod = this.injector.get('MapsPrint');
524
+ if (this.injectedModules.indexOf(mod) === -1) {
525
+ this.injectedModules.push(mod);
526
+ }
527
+ }
528
+ catch { }
529
+ try {
530
+ let mod = this.injector.get('MapsPdfExport');
531
+ if (this.injectedModules.indexOf(mod) === -1) {
532
+ this.injectedModules.push(mod);
533
+ }
534
+ }
535
+ catch { }
536
+ try {
537
+ let mod = this.injector.get('MapsImageExport');
538
+ if (this.injectedModules.indexOf(mod) === -1) {
539
+ this.injectedModules.push(mod);
540
+ }
541
+ }
542
+ catch { }
543
+ try {
544
+ let mod = this.injector.get('MapsPolygon');
545
+ if (this.injectedModules.indexOf(mod) === -1) {
546
+ this.injectedModules.push(mod);
547
+ }
548
+ }
549
+ catch { }
550
+ this.registerEvents(outputs);
551
+ this.addTwoWay.call(this, twoWays);
552
+ setValue('currentInstance', this, this.viewContainerRef);
553
+ this.context = new ComponentBase();
554
+ }
555
+ ngOnInit() {
556
+ this.context.ngOnInit(this);
557
+ }
558
+ ngAfterViewInit() {
559
+ this.context.ngAfterViewInit(this);
560
+ }
561
+ ngOnDestroy() {
562
+ this.context.ngOnDestroy(this);
563
+ }
564
+ ngAfterContentChecked() {
565
+ this.tagObjects[0].instance = this.childLayers;
566
+ if (this.childAnnotations) {
567
+ this.tagObjects[1].instance = this.childAnnotations;
568
+ }
569
+ this.context.ngAfterContentChecked(this);
570
+ }
571
+ };
572
+ MapsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MapsComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
573
+ MapsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: MapsComponent, selector: "ejs-maps", inputs: { 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" }, outputs: { 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" }, queries: [{ propertyName: "childLayers", first: true, predicate: LayersDirective, descendants: true }, { propertyName: "childAnnotations", first: true, predicate: AnnotationsDirective, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
574
+ MapsComponent = __decorate([
575
+ ComponentMixins([ComponentBase])
576
+ ], MapsComponent);
577
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MapsComponent, decorators: [{
578
+ type: Component,
579
+ args: [{
580
+ selector: 'ejs-maps',
581
+ inputs: inputs,
582
+ outputs: outputs,
583
+ template: '',
584
+ changeDetection: ChangeDetectionStrategy.OnPush,
585
+ queries: {
586
+ childLayers: new ContentChild(LayersDirective),
587
+ childAnnotations: new ContentChild(AnnotationsDirective)
588
+ }
589
+ }]
590
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }]; } });
591
+
592
+ /**
593
+ * NgModule definition for the Maps component.
594
+ */
595
+ class MapsModule {
596
+ }
597
+ MapsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MapsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
598
+ MapsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MapsModule, declarations: [MapsComponent,
599
+ InitialShapeSelectionDirective,
600
+ InitialShapeSelectionsDirective,
601
+ MarkerDirective,
602
+ MarkersDirective,
603
+ ColorMappingDirective,
604
+ ColorMappingsDirective,
605
+ BubbleDirective,
606
+ BubblesDirective,
607
+ NavigationLineDirective,
608
+ NavigationLinesDirective,
609
+ LayerDirective,
610
+ LayersDirective,
611
+ AnnotationDirective,
612
+ AnnotationsDirective], imports: [CommonModule], exports: [MapsComponent,
613
+ InitialShapeSelectionDirective,
614
+ InitialShapeSelectionsDirective,
615
+ MarkerDirective,
616
+ MarkersDirective,
617
+ ColorMappingDirective,
618
+ ColorMappingsDirective,
619
+ BubbleDirective,
620
+ BubblesDirective,
621
+ NavigationLineDirective,
622
+ NavigationLinesDirective,
623
+ LayerDirective,
624
+ LayersDirective,
625
+ AnnotationDirective,
626
+ AnnotationsDirective] });
627
+ MapsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MapsModule, imports: [[CommonModule]] });
628
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MapsModule, decorators: [{
629
+ type: NgModule,
630
+ args: [{
631
+ imports: [CommonModule],
632
+ declarations: [
633
+ MapsComponent,
634
+ InitialShapeSelectionDirective,
635
+ InitialShapeSelectionsDirective,
636
+ MarkerDirective,
637
+ MarkersDirective,
638
+ ColorMappingDirective,
639
+ ColorMappingsDirective,
640
+ BubbleDirective,
641
+ BubblesDirective,
642
+ NavigationLineDirective,
643
+ NavigationLinesDirective,
644
+ LayerDirective,
645
+ LayersDirective,
646
+ AnnotationDirective,
647
+ AnnotationsDirective
648
+ ],
649
+ exports: [
650
+ MapsComponent,
651
+ InitialShapeSelectionDirective,
652
+ InitialShapeSelectionsDirective,
653
+ MarkerDirective,
654
+ MarkersDirective,
655
+ ColorMappingDirective,
656
+ ColorMappingsDirective,
657
+ BubbleDirective,
658
+ BubblesDirective,
659
+ NavigationLineDirective,
660
+ NavigationLinesDirective,
661
+ LayerDirective,
662
+ LayersDirective,
663
+ AnnotationDirective,
664
+ AnnotationsDirective
665
+ ]
666
+ }]
667
+ }] });
668
+
669
+ const BubbleService = { provide: 'MapsBubble', useValue: Bubble };
670
+ const LegendService = { provide: 'MapsLegend', useValue: Legend };
671
+ const MarkerService = { provide: 'MapsMarker', useValue: Marker };
672
+ const HighlightService = { provide: 'MapsHighlight', useValue: Highlight };
673
+ const SelectionService = { provide: 'MapsSelection', useValue: Selection };
674
+ const MapsTooltipService = { provide: 'MapsMapsTooltip', useValue: MapsTooltip };
675
+ const ZoomService = { provide: 'MapsZoom', useValue: Zoom };
676
+ const DataLabelService = { provide: 'MapsDataLabel', useValue: DataLabel };
677
+ const NavigationLineService = { provide: 'MapsNavigationLine', useValue: NavigationLine };
678
+ const AnnotationsService = { provide: 'MapsAnnotations', useValue: Annotations };
679
+ const PrintService = { provide: 'MapsPrint', useValue: Print };
680
+ const PdfExportService = { provide: 'MapsPdfExport', useValue: PdfExport };
681
+ const ImageExportService = { provide: 'MapsImageExport', useValue: ImageExport };
682
+ const PolygonService = { provide: 'MapsPolygon', useValue: Polygon };
683
+ /**
684
+ * NgModule definition for the Maps component with providers.
685
+ */
686
+ class MapsAllModule {
687
+ }
688
+ MapsAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MapsAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
689
+ MapsAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MapsAllModule, imports: [CommonModule, MapsModule], exports: [MapsModule] });
690
+ MapsAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MapsAllModule, providers: [
691
+ BubbleService,
692
+ LegendService,
693
+ MarkerService,
694
+ HighlightService,
695
+ SelectionService,
696
+ MapsTooltipService,
697
+ ZoomService,
698
+ DataLabelService,
699
+ NavigationLineService,
700
+ AnnotationsService,
701
+ PrintService,
702
+ PdfExportService,
703
+ ImageExportService,
704
+ PolygonService
705
+ ], imports: [[CommonModule, MapsModule], MapsModule] });
706
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MapsAllModule, decorators: [{
707
+ type: NgModule,
708
+ args: [{
709
+ imports: [CommonModule, MapsModule],
710
+ exports: [
711
+ MapsModule
712
+ ],
713
+ providers: [
714
+ BubbleService,
715
+ LegendService,
716
+ MarkerService,
717
+ HighlightService,
718
+ SelectionService,
719
+ MapsTooltipService,
720
+ ZoomService,
721
+ DataLabelService,
722
+ NavigationLineService,
723
+ AnnotationsService,
724
+ PrintService,
725
+ PdfExportService,
726
+ ImageExportService,
727
+ PolygonService
728
+ ]
729
+ }]
730
+ }] });
731
+
732
+ /**
733
+ * Generated bundle index. Do not edit.
734
+ */
735
+
736
+ export { AnnotationDirective, AnnotationsDirective, AnnotationsService, BubbleDirective, BubbleService, BubblesDirective, ColorMappingDirective, ColorMappingsDirective, DataLabelService, HighlightService, ImageExportService, InitialShapeSelectionDirective, InitialShapeSelectionsDirective, LayerDirective, LayersDirective, LegendService, MapsAllModule, MapsComponent, MapsModule, MapsTooltipService, MarkerDirective, MarkerService, MarkersDirective, NavigationLineDirective, NavigationLineService, NavigationLinesDirective, PdfExportService, PolygonService, PrintService, SelectionService, ZoomService };
737
+ //# sourceMappingURL=syncfusion-ej2-angular-maps.mjs.map