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

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 (40) hide show
  1. package/esm2020/public_api.mjs +3 -0
  2. package/esm2020/src/index.mjs +12 -0
  3. package/esm2020/src/maps/annotations.directive.mjs +62 -0
  4. package/esm2020/src/maps/bubblesettings.directive.mjs +71 -0
  5. package/esm2020/src/maps/colormapping.directive.mjs +61 -0
  6. package/esm2020/src/maps/initialshapeselection.directive.mjs +59 -0
  7. package/esm2020/src/maps/layers.directive.mjs +64 -0
  8. package/esm2020/src/maps/maps-all.module.mjs +65 -0
  9. package/esm2020/src/maps/maps.component.mjs +160 -0
  10. package/esm2020/src/maps/maps.module.mjs +88 -0
  11. package/esm2020/src/maps/markersettings.directive.mjs +73 -0
  12. package/esm2020/src/maps/navigationlinesettings.directive.mjs +67 -0
  13. package/esm2020/syncfusion-ej2-angular-maps.mjs +5 -0
  14. package/fesm2015/syncfusion-ej2-angular-maps.mjs +728 -0
  15. package/fesm2015/syncfusion-ej2-angular-maps.mjs.map +1 -0
  16. package/fesm2020/syncfusion-ej2-angular-maps.mjs +728 -0
  17. package/fesm2020/syncfusion-ej2-angular-maps.mjs.map +1 -0
  18. package/package.json +26 -12
  19. package/src/maps/annotations.directive.d.ts +5 -0
  20. package/src/maps/bubblesettings.directive.d.ts +5 -0
  21. package/src/maps/colormapping.directive.d.ts +5 -0
  22. package/src/maps/initialshapeselection.directive.d.ts +5 -0
  23. package/src/maps/layers.directive.d.ts +9 -4
  24. package/src/maps/maps-all.module.d.ts +6 -0
  25. package/src/maps/maps.component.d.ts +3 -0
  26. package/src/maps/maps.module.d.ts +13 -0
  27. package/src/maps/markersettings.directive.d.ts +5 -0
  28. package/src/maps/navigationlinesettings.directive.d.ts +5 -0
  29. package/{ej2-angular-maps.d.ts → syncfusion-ej2-angular-maps.d.ts} +1 -1
  30. package/@syncfusion/ej2-angular-maps.es5.js +0 -867
  31. package/@syncfusion/ej2-angular-maps.es5.js.map +0 -1
  32. package/@syncfusion/ej2-angular-maps.js +0 -800
  33. package/@syncfusion/ej2-angular-maps.js.map +0 -1
  34. package/CHANGELOG.md +0 -554
  35. package/dist/ej2-angular-maps.umd.js +0 -1106
  36. package/dist/ej2-angular-maps.umd.js.map +0 -1
  37. package/dist/ej2-angular-maps.umd.min.js +0 -11
  38. package/dist/ej2-angular-maps.umd.min.js.map +0 -1
  39. package/ej2-angular-maps.metadata.json +0 -1
  40. package/postinstall/tagchange.js +0 -18
@@ -0,0 +1,728 @@
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 } 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
+ * Layer Directive
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', 'colorValuePath', 'dashArray', 'dataSource', 'fill', 'height', 'highlightSettings', 'imageUrl', 'imageUrlValuePath', 'initialMarkerSelection', 'latitudeValuePath', 'legendText', 'longitudeValuePath', 'offset', 'opacity', 'query', 'selectionSettings', 'shape', 'shapeValuePath', 'template', 'tooltipSettings', 'visible', 'width'];
66
+ let outputs$6 = [];
67
+ /**
68
+ * Layer Directive
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", colorValuePath: "colorValuePath", dashArray: "dashArray", dataSource: "dataSource", fill: "fill", height: "height", 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" }, 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
+ * ColorMapping Directive
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
+ * Layer Directive
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
+ * Layer Directive
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', 'bingMapType', 'bubbleSettings', 'dataLabelSettings', 'dataSource', 'geometryType', 'highlightSettings', 'initialShapeSelection', 'key', 'layerType', 'markerClusterSettings', 'markerSettings', 'navigationLineSettings', 'query', 'selectionSettings', 'shapeData', 'shapeDataPath', 'shapePropertyPath', 'shapeSettings', 'staticMapType', 'toggleLegendSettings', 'tooltipSettings', 'type', 'urlTemplate', 'visible'];
319
+ let outputs$2 = [];
320
+ /**
321
+ * Layer Directive
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", bingMapType: "bingMapType", bubbleSettings: "bubbleSettings", dataLabelSettings: "dataLabelSettings", dataSource: "dataSource", geometryType: "geometryType", highlightSettings: "highlightSettings", initialShapeSelection: "initialShapeSelection", key: "key", layerType: "layerType", markerClusterSettings: "markerClusterSettings", markerSettings: "markerSettings", navigationLineSettings: "navigationLineSettings", query: "query", selectionSettings: "selectionSettings", shapeData: "shapeData", shapeDataPath: "shapeDataPath", shapePropertyPath: "shapePropertyPath", shapeSettings: "shapeSettings", staticMapType: "staticMapType", 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
+ * Annotation Directive
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', 'markerMouseMove', 'markerRendering', 'onclick', 'pan', 'resize', 'rightClick', 'shapeHighlight', 'shapeRendering', 'shapeSelected', 'tooltipRender', 'tooltipRenderComplete', 'zoom', 'dataSourceChange'];
434
+ const twoWays = ['dataSource'];
435
+ /**
436
+ * Represents Maps Component
437
+ * ```html
438
+ * <ej-maps></ej-maps>
439
+ * ```
440
+ */
441
+ let MapsComponent = class MapsComponent extends Maps {
442
+ constructor(ngEle, srenderer, viewContainerRef, injector) {
443
+ super();
444
+ this.ngEle = ngEle;
445
+ this.srenderer = srenderer;
446
+ this.viewContainerRef = viewContainerRef;
447
+ this.injector = injector;
448
+ this.tags = ['layers', 'annotations'];
449
+ this.element = this.ngEle.nativeElement;
450
+ this.injectedModules = this.injectedModules || [];
451
+ try {
452
+ let mod = this.injector.get('MapsBubble');
453
+ if (this.injectedModules.indexOf(mod) === -1) {
454
+ this.injectedModules.push(mod);
455
+ }
456
+ }
457
+ catch (_a) { }
458
+ try {
459
+ let mod = this.injector.get('MapsLegend');
460
+ if (this.injectedModules.indexOf(mod) === -1) {
461
+ this.injectedModules.push(mod);
462
+ }
463
+ }
464
+ catch (_b) { }
465
+ try {
466
+ let mod = this.injector.get('MapsMarker');
467
+ if (this.injectedModules.indexOf(mod) === -1) {
468
+ this.injectedModules.push(mod);
469
+ }
470
+ }
471
+ catch (_c) { }
472
+ try {
473
+ let mod = this.injector.get('MapsHighlight');
474
+ if (this.injectedModules.indexOf(mod) === -1) {
475
+ this.injectedModules.push(mod);
476
+ }
477
+ }
478
+ catch (_d) { }
479
+ try {
480
+ let mod = this.injector.get('MapsSelection');
481
+ if (this.injectedModules.indexOf(mod) === -1) {
482
+ this.injectedModules.push(mod);
483
+ }
484
+ }
485
+ catch (_e) { }
486
+ try {
487
+ let mod = this.injector.get('MapsMapsTooltip');
488
+ if (this.injectedModules.indexOf(mod) === -1) {
489
+ this.injectedModules.push(mod);
490
+ }
491
+ }
492
+ catch (_f) { }
493
+ try {
494
+ let mod = this.injector.get('MapsZoom');
495
+ if (this.injectedModules.indexOf(mod) === -1) {
496
+ this.injectedModules.push(mod);
497
+ }
498
+ }
499
+ catch (_g) { }
500
+ try {
501
+ let mod = this.injector.get('MapsDataLabel');
502
+ if (this.injectedModules.indexOf(mod) === -1) {
503
+ this.injectedModules.push(mod);
504
+ }
505
+ }
506
+ catch (_h) { }
507
+ try {
508
+ let mod = this.injector.get('MapsNavigationLine');
509
+ if (this.injectedModules.indexOf(mod) === -1) {
510
+ this.injectedModules.push(mod);
511
+ }
512
+ }
513
+ catch (_j) { }
514
+ try {
515
+ let mod = this.injector.get('MapsAnnotations');
516
+ if (this.injectedModules.indexOf(mod) === -1) {
517
+ this.injectedModules.push(mod);
518
+ }
519
+ }
520
+ catch (_k) { }
521
+ try {
522
+ let mod = this.injector.get('MapsPrint');
523
+ if (this.injectedModules.indexOf(mod) === -1) {
524
+ this.injectedModules.push(mod);
525
+ }
526
+ }
527
+ catch (_l) { }
528
+ try {
529
+ let mod = this.injector.get('MapsPdfExport');
530
+ if (this.injectedModules.indexOf(mod) === -1) {
531
+ this.injectedModules.push(mod);
532
+ }
533
+ }
534
+ catch (_m) { }
535
+ try {
536
+ let mod = this.injector.get('MapsImageExport');
537
+ if (this.injectedModules.indexOf(mod) === -1) {
538
+ this.injectedModules.push(mod);
539
+ }
540
+ }
541
+ catch (_o) { }
542
+ this.registerEvents(outputs);
543
+ this.addTwoWay.call(this, twoWays);
544
+ setValue('currentInstance', this, this.viewContainerRef);
545
+ this.context = new ComponentBase();
546
+ }
547
+ ngOnInit() {
548
+ this.context.ngOnInit(this);
549
+ }
550
+ ngAfterViewInit() {
551
+ this.context.ngAfterViewInit(this);
552
+ }
553
+ ngOnDestroy() {
554
+ this.context.ngOnDestroy(this);
555
+ }
556
+ ngAfterContentChecked() {
557
+ this.tagObjects[0].instance = this.childLayers;
558
+ if (this.childAnnotations) {
559
+ this.tagObjects[1].instance = this.childAnnotations;
560
+ }
561
+ this.context.ngAfterContentChecked(this);
562
+ }
563
+ };
564
+ 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 });
565
+ 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", markerMouseMove: "markerMouseMove", markerRendering: "markerRendering", onclick: "onclick", pan: "pan", resize: "resize", rightClick: "rightClick", shapeHighlight: "shapeHighlight", shapeRendering: "shapeRendering", shapeSelected: "shapeSelected", tooltipRender: "tooltipRender", tooltipRenderComplete: "tooltipRenderComplete", zoom: "zoom", 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 });
566
+ MapsComponent = __decorate([
567
+ ComponentMixins([ComponentBase])
568
+ ], MapsComponent);
569
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MapsComponent, decorators: [{
570
+ type: Component,
571
+ args: [{
572
+ selector: 'ejs-maps',
573
+ inputs: inputs,
574
+ outputs: outputs,
575
+ template: '',
576
+ changeDetection: ChangeDetectionStrategy.OnPush,
577
+ queries: {
578
+ childLayers: new ContentChild(LayersDirective),
579
+ childAnnotations: new ContentChild(AnnotationsDirective)
580
+ }
581
+ }]
582
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }]; } });
583
+
584
+ /**
585
+ * NgModule definition for the Maps component.
586
+ */
587
+ class MapsModule {
588
+ }
589
+ MapsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MapsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
590
+ MapsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MapsModule, declarations: [MapsComponent,
591
+ InitialShapeSelectionDirective,
592
+ InitialShapeSelectionsDirective,
593
+ MarkerDirective,
594
+ MarkersDirective,
595
+ ColorMappingDirective,
596
+ ColorMappingsDirective,
597
+ BubbleDirective,
598
+ BubblesDirective,
599
+ NavigationLineDirective,
600
+ NavigationLinesDirective,
601
+ LayerDirective,
602
+ LayersDirective,
603
+ AnnotationDirective,
604
+ AnnotationsDirective], imports: [CommonModule], exports: [MapsComponent,
605
+ InitialShapeSelectionDirective,
606
+ InitialShapeSelectionsDirective,
607
+ MarkerDirective,
608
+ MarkersDirective,
609
+ ColorMappingDirective,
610
+ ColorMappingsDirective,
611
+ BubbleDirective,
612
+ BubblesDirective,
613
+ NavigationLineDirective,
614
+ NavigationLinesDirective,
615
+ LayerDirective,
616
+ LayersDirective,
617
+ AnnotationDirective,
618
+ AnnotationsDirective] });
619
+ MapsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MapsModule, imports: [[CommonModule]] });
620
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MapsModule, decorators: [{
621
+ type: NgModule,
622
+ args: [{
623
+ imports: [CommonModule],
624
+ declarations: [
625
+ MapsComponent,
626
+ InitialShapeSelectionDirective,
627
+ InitialShapeSelectionsDirective,
628
+ MarkerDirective,
629
+ MarkersDirective,
630
+ ColorMappingDirective,
631
+ ColorMappingsDirective,
632
+ BubbleDirective,
633
+ BubblesDirective,
634
+ NavigationLineDirective,
635
+ NavigationLinesDirective,
636
+ LayerDirective,
637
+ LayersDirective,
638
+ AnnotationDirective,
639
+ AnnotationsDirective
640
+ ],
641
+ exports: [
642
+ MapsComponent,
643
+ InitialShapeSelectionDirective,
644
+ InitialShapeSelectionsDirective,
645
+ MarkerDirective,
646
+ MarkersDirective,
647
+ ColorMappingDirective,
648
+ ColorMappingsDirective,
649
+ BubbleDirective,
650
+ BubblesDirective,
651
+ NavigationLineDirective,
652
+ NavigationLinesDirective,
653
+ LayerDirective,
654
+ LayersDirective,
655
+ AnnotationDirective,
656
+ AnnotationsDirective
657
+ ]
658
+ }]
659
+ }] });
660
+
661
+ const BubbleService = { provide: 'MapsBubble', useValue: Bubble };
662
+ const LegendService = { provide: 'MapsLegend', useValue: Legend };
663
+ const MarkerService = { provide: 'MapsMarker', useValue: Marker };
664
+ const HighlightService = { provide: 'MapsHighlight', useValue: Highlight };
665
+ const SelectionService = { provide: 'MapsSelection', useValue: Selection };
666
+ const MapsTooltipService = { provide: 'MapsMapsTooltip', useValue: MapsTooltip };
667
+ const ZoomService = { provide: 'MapsZoom', useValue: Zoom };
668
+ const DataLabelService = { provide: 'MapsDataLabel', useValue: DataLabel };
669
+ const NavigationLineService = { provide: 'MapsNavigationLine', useValue: NavigationLine };
670
+ const AnnotationsService = { provide: 'MapsAnnotations', useValue: Annotations };
671
+ const PrintService = { provide: 'MapsPrint', useValue: Print };
672
+ const PdfExportService = { provide: 'MapsPdfExport', useValue: PdfExport };
673
+ const ImageExportService = { provide: 'MapsImageExport', useValue: ImageExport };
674
+ /**
675
+ * NgModule definition for the Maps component with providers.
676
+ */
677
+ class MapsAllModule {
678
+ }
679
+ MapsAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MapsAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
680
+ MapsAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MapsAllModule, imports: [CommonModule, MapsModule], exports: [MapsModule] });
681
+ MapsAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MapsAllModule, providers: [
682
+ BubbleService,
683
+ LegendService,
684
+ MarkerService,
685
+ HighlightService,
686
+ SelectionService,
687
+ MapsTooltipService,
688
+ ZoomService,
689
+ DataLabelService,
690
+ NavigationLineService,
691
+ AnnotationsService,
692
+ PrintService,
693
+ PdfExportService,
694
+ ImageExportService
695
+ ], imports: [[CommonModule, MapsModule], MapsModule] });
696
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: MapsAllModule, decorators: [{
697
+ type: NgModule,
698
+ args: [{
699
+ imports: [CommonModule, MapsModule],
700
+ exports: [
701
+ MapsModule
702
+ ],
703
+ providers: [
704
+ BubbleService,
705
+ LegendService,
706
+ MarkerService,
707
+ HighlightService,
708
+ SelectionService,
709
+ MapsTooltipService,
710
+ ZoomService,
711
+ DataLabelService,
712
+ NavigationLineService,
713
+ AnnotationsService,
714
+ PrintService,
715
+ PdfExportService,
716
+ ImageExportService
717
+ ]
718
+ }]
719
+ }] });
720
+
721
+ // Mapping root file for package generation
722
+
723
+ /**
724
+ * Generated bundle index. Do not edit.
725
+ */
726
+
727
+ 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, PrintService, SelectionService, ZoomService };
728
+ //# sourceMappingURL=syncfusion-ej2-angular-maps.mjs.map