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

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 (47) hide show
  1. package/@syncfusion/ej2-angular-maps.es5.js +877 -0
  2. package/@syncfusion/ej2-angular-maps.es5.js.map +1 -0
  3. package/@syncfusion/ej2-angular-maps.js +810 -0
  4. package/@syncfusion/ej2-angular-maps.js.map +1 -0
  5. package/LICENSE +10 -0
  6. package/README.md +7 -15
  7. package/dist/ej2-angular-maps.umd.js +1128 -0
  8. package/dist/ej2-angular-maps.umd.js.map +1 -0
  9. package/dist/ej2-angular-maps.umd.min.js +2 -0
  10. package/dist/ej2-angular-maps.umd.min.js.map +1 -0
  11. package/ej2-angular-maps.d.ts +5 -0
  12. package/ej2-angular-maps.metadata.json +1 -0
  13. package/package.json +48 -30
  14. package/public_api.d.ts +1 -1
  15. package/schematics/utils/lib-details.d.ts +2 -2
  16. package/schematics/utils/lib-details.js +2 -2
  17. package/schematics/utils/lib-details.ts +2 -2
  18. package/src/index.d.ts +11 -11
  19. package/src/maps/annotations.directive.d.ts +53 -58
  20. package/src/maps/bubblesettings.directive.d.ts +116 -121
  21. package/src/maps/colormapping.directive.d.ts +71 -76
  22. package/src/maps/initialshapeselection.directive.d.ts +37 -42
  23. package/src/maps/layers.directive.d.ts +135 -140
  24. package/src/maps/maps-all.module.d.ts +20 -26
  25. package/src/maps/maps.component.d.ts +70 -73
  26. package/src/maps/maps.module.d.ts +5 -18
  27. package/src/maps/markersettings.directive.d.ts +171 -176
  28. package/src/maps/navigationlinesettings.directive.d.ts +75 -80
  29. package/CHANGELOG.md +0 -644
  30. package/esm2020/public_api.mjs +0 -2
  31. package/esm2020/src/index.mjs +0 -12
  32. package/esm2020/src/maps/annotations.directive.mjs +0 -62
  33. package/esm2020/src/maps/bubblesettings.directive.mjs +0 -71
  34. package/esm2020/src/maps/colormapping.directive.mjs +0 -61
  35. package/esm2020/src/maps/initialshapeselection.directive.mjs +0 -59
  36. package/esm2020/src/maps/layers.directive.mjs +0 -64
  37. package/esm2020/src/maps/maps-all.module.mjs +0 -68
  38. package/esm2020/src/maps/maps.component.mjs +0 -168
  39. package/esm2020/src/maps/maps.module.mjs +0 -88
  40. package/esm2020/src/maps/markersettings.directive.mjs +0 -73
  41. package/esm2020/src/maps/navigationlinesettings.directive.mjs +0 -67
  42. package/esm2020/syncfusion-ej2-angular-maps.mjs +0 -5
  43. package/fesm2015/syncfusion-ej2-angular-maps.mjs +0 -737
  44. package/fesm2015/syncfusion-ej2-angular-maps.mjs.map +0 -1
  45. package/fesm2020/syncfusion-ej2-angular-maps.mjs +0 -737
  46. package/fesm2020/syncfusion-ej2-angular-maps.mjs.map +0 -1
  47. package/syncfusion-ej2-angular-maps.d.ts +0 -5
@@ -0,0 +1,1128 @@
1
+ (function (global, factory) {
2
+ typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/core'), require('@syncfusion/ej2-angular-base'), require('@syncfusion/ej2-maps'), require('@angular/common')) :
3
+ typeof define === 'function' && define.amd ? define(['exports', '@angular/core', '@syncfusion/ej2-angular-base', '@syncfusion/ej2-maps', '@angular/common'], factory) :
4
+ (factory((global['ej2-angular-maps'] = {}),global.ng.core,global.ej2.angular.base,global.ej2.maps,global.ng.common));
5
+ }(this, (function (exports,core,ej2AngularBase,ej2Maps,common) { 'use strict';
6
+
7
+ var __extends = (this && this.__extends) || (function () {
8
+ var extendStatics = Object.setPrototypeOf ||
9
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
10
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
11
+ return function (d, b) {
12
+ extendStatics(d, b);
13
+ function __() { this.constructor = d; }
14
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15
+ };
16
+ })();
17
+ var input = ['shapePath', 'shapeValue'];
18
+ var outputs = [];
19
+ /**
20
+ * Represents the directive to configure the selection of the shapes when the maps is initially rendered.
21
+ * ```html
22
+ * <e-layers>
23
+ * <e-layer>
24
+ * <e-initialShapeSelections>
25
+ * <e-initialShapeSelection>
26
+ * </e-initialShapeSelection>
27
+ * </e-initialShapeSelections>
28
+ * </e-layer>
29
+ * </e-layers>
30
+ * ```
31
+ */
32
+ var InitialShapeSelectionDirective = /** @class */ (function (_super) {
33
+ __extends(InitialShapeSelectionDirective, _super);
34
+ /**
35
+ * @param {?} viewContainerRef
36
+ */
37
+ function InitialShapeSelectionDirective(viewContainerRef) {
38
+ var _this = _super.call(this) || this;
39
+ _this.viewContainerRef = viewContainerRef;
40
+ ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
41
+ _this.registerEvents(outputs);
42
+ _this.directivePropList = input;
43
+ return _this;
44
+ }
45
+ return InitialShapeSelectionDirective;
46
+ }(ej2AngularBase.ComplexBase));
47
+ InitialShapeSelectionDirective.decorators = [
48
+ { type: core.Directive, args: [{
49
+ selector: 'e-layer>e-initialShapeSelections>e-initialShapeSelection',
50
+ inputs: input,
51
+ outputs: outputs,
52
+ queries: {}
53
+ },] },
54
+ ];
55
+ /**
56
+ * @nocollapse
57
+ */
58
+ InitialShapeSelectionDirective.ctorParameters = function () { return [
59
+ { type: core.ViewContainerRef, },
60
+ ]; };
61
+ /**
62
+ * InitialShapeSelection Array Directive
63
+ */
64
+ var InitialShapeSelectionsDirective = /** @class */ (function (_super) {
65
+ __extends(InitialShapeSelectionsDirective, _super);
66
+ function InitialShapeSelectionsDirective() {
67
+ return _super.call(this, 'initialshapeselection') || this;
68
+ }
69
+ return InitialShapeSelectionsDirective;
70
+ }(ej2AngularBase.ArrayBase));
71
+ InitialShapeSelectionsDirective.decorators = [
72
+ { type: core.Directive, args: [{
73
+ selector: 'e-layer>e-initialShapeSelections',
74
+ queries: {
75
+ children: new core.ContentChildren(InitialShapeSelectionDirective)
76
+ },
77
+ },] },
78
+ ];
79
+ /**
80
+ * @nocollapse
81
+ */
82
+ InitialShapeSelectionsDirective.ctorParameters = function () { return []; };
83
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
84
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
85
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
86
+ r = Reflect.decorate(decorators, target, key, desc);
87
+ else
88
+ for (var i = decorators.length - 1; i >= 0; i--)
89
+ if (d = decorators[i])
90
+ r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
91
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
92
+ };
93
+ var __metadata = (this && this.__metadata) || function (k, v) {
94
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
95
+ return Reflect.metadata(k, v);
96
+ };
97
+ var input$1 = ['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'];
98
+ var outputs$1 = [];
99
+ /**
100
+ * Represents the directive to define the markers in the maps.
101
+ * ```html
102
+ * <e-layers>
103
+ * <e-layer>
104
+ * <e-markerSettings>
105
+ * <e-markerSetting>
106
+ * </e-markerSetting>
107
+ * </e-markerSettings>
108
+ * </e-layer>
109
+ * </e-layers>
110
+ * ```
111
+ */
112
+ var MarkerDirective = /** @class */ (function (_super) {
113
+ __extends(MarkerDirective, _super);
114
+ /**
115
+ * @param {?} viewContainerRef
116
+ */
117
+ function MarkerDirective(viewContainerRef) {
118
+ var _this = _super.call(this) || this;
119
+ _this.viewContainerRef = viewContainerRef;
120
+ ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
121
+ _this.registerEvents(outputs$1);
122
+ _this.directivePropList = input$1;
123
+ return _this;
124
+ }
125
+ return MarkerDirective;
126
+ }(ej2AngularBase.ComplexBase));
127
+ MarkerDirective.decorators = [
128
+ { type: core.Directive, args: [{
129
+ selector: 'e-layer>e-markerSettings>e-markerSetting',
130
+ inputs: input$1,
131
+ outputs: outputs$1,
132
+ queries: {}
133
+ },] },
134
+ ];
135
+ /**
136
+ * @nocollapse
137
+ */
138
+ MarkerDirective.ctorParameters = function () { return [
139
+ { type: core.ViewContainerRef, },
140
+ ]; };
141
+ MarkerDirective.propDecorators = {
142
+ 'template': [{ type: core.ContentChild, args: ['template',] },],
143
+ 'tooltipSettings_template': [{ type: core.ContentChild, args: ['tooltipSettingsTemplate',] },],
144
+ };
145
+ __decorate([
146
+ ej2AngularBase.Template(),
147
+ __metadata("design:type", Object)
148
+ ], MarkerDirective.prototype, "template", void 0);
149
+ __decorate([
150
+ ej2AngularBase.Template(),
151
+ __metadata("design:type", Object)
152
+ ], MarkerDirective.prototype, "tooltipSettings_template", void 0);
153
+ /**
154
+ * Marker Array Directive
155
+ */
156
+ var MarkersDirective = /** @class */ (function (_super) {
157
+ __extends(MarkersDirective, _super);
158
+ function MarkersDirective() {
159
+ return _super.call(this, 'markersettings') || this;
160
+ }
161
+ return MarkersDirective;
162
+ }(ej2AngularBase.ArrayBase));
163
+ MarkersDirective.decorators = [
164
+ { type: core.Directive, args: [{
165
+ selector: 'e-layer>e-markerSettings',
166
+ queries: {
167
+ children: new core.ContentChildren(MarkerDirective)
168
+ },
169
+ },] },
170
+ ];
171
+ /**
172
+ * @nocollapse
173
+ */
174
+ MarkersDirective.ctorParameters = function () { return []; };
175
+ var input$2 = ['color', 'from', 'label', 'maxOpacity', 'minOpacity', 'showLegend', 'to', 'value'];
176
+ var outputs$2 = [];
177
+ /**
178
+ * Represents the directive to define the bubble color mapping in the maps.
179
+ * ```html
180
+ * <e-layers>
181
+ * <e-layer>
182
+ * <e-bubbleSettings>
183
+ * <e-colorMappings>
184
+ * <e-colorMapping>
185
+ * </e-colorMapping>
186
+ * </e-colorMappings>
187
+ * </e-bubbleSettings>
188
+ * </e-layer>
189
+ * </e-layers>
190
+ * ```
191
+ */
192
+ var ColorMappingDirective = /** @class */ (function (_super) {
193
+ __extends(ColorMappingDirective, _super);
194
+ /**
195
+ * @param {?} viewContainerRef
196
+ */
197
+ function ColorMappingDirective(viewContainerRef) {
198
+ var _this = _super.call(this) || this;
199
+ _this.viewContainerRef = viewContainerRef;
200
+ ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
201
+ _this.registerEvents(outputs$2);
202
+ _this.directivePropList = input$2;
203
+ return _this;
204
+ }
205
+ return ColorMappingDirective;
206
+ }(ej2AngularBase.ComplexBase));
207
+ ColorMappingDirective.decorators = [
208
+ { type: core.Directive, args: [{
209
+ selector: 'e-bubbleSettings>e-colorMappings>e-colorMapping',
210
+ inputs: input$2,
211
+ outputs: outputs$2,
212
+ queries: {}
213
+ },] },
214
+ ];
215
+ /**
216
+ * @nocollapse
217
+ */
218
+ ColorMappingDirective.ctorParameters = function () { return [
219
+ { type: core.ViewContainerRef, },
220
+ ]; };
221
+ /**
222
+ * ColorMapping Array Directive
223
+ */
224
+ var ColorMappingsDirective = /** @class */ (function (_super) {
225
+ __extends(ColorMappingsDirective, _super);
226
+ function ColorMappingsDirective() {
227
+ return _super.call(this, 'colormapping') || this;
228
+ }
229
+ return ColorMappingsDirective;
230
+ }(ej2AngularBase.ArrayBase));
231
+ ColorMappingsDirective.decorators = [
232
+ { type: core.Directive, args: [{
233
+ selector: 'e-bubbleSettings>e-colorMappings',
234
+ queries: {
235
+ children: new core.ContentChildren(ColorMappingDirective)
236
+ },
237
+ },] },
238
+ ];
239
+ /**
240
+ * @nocollapse
241
+ */
242
+ ColorMappingsDirective.ctorParameters = function () { return []; };
243
+ var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
244
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
245
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
246
+ r = Reflect.decorate(decorators, target, key, desc);
247
+ else
248
+ for (var i = decorators.length - 1; i >= 0; i--)
249
+ if (d = decorators[i])
250
+ r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
251
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
252
+ };
253
+ var __metadata$1 = (this && this.__metadata) || function (k, v) {
254
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
255
+ return Reflect.metadata(k, v);
256
+ };
257
+ var input$3 = ['animationDelay', 'animationDuration', 'border', 'bubbleType', 'colorMapping', 'colorValuePath', 'dataSource', 'fill', 'highlightSettings', 'maxRadius', 'minRadius', 'opacity', 'query', 'selectionSettings', 'tooltipSettings', 'valuePath', 'visible'];
258
+ var outputs$3 = [];
259
+ /**
260
+ * Represents the directive to define the bubbles in the maps.
261
+ * ```html
262
+ * <e-layers>
263
+ * <e-layer>
264
+ * <e-bubbleSettings>
265
+ * <e-bubbleSetting>
266
+ * </e-bubbleSetting>
267
+ * </e-bubbleSettings>
268
+ * </e-layer>
269
+ * </e-layers>
270
+ * ```
271
+ */
272
+ var BubbleDirective = /** @class */ (function (_super) {
273
+ __extends(BubbleDirective, _super);
274
+ /**
275
+ * @param {?} viewContainerRef
276
+ */
277
+ function BubbleDirective(viewContainerRef) {
278
+ var _this = _super.call(this) || this;
279
+ _this.viewContainerRef = viewContainerRef;
280
+ _this.tags = ['colorMapping'];
281
+ ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
282
+ _this.registerEvents(outputs$3);
283
+ _this.directivePropList = input$3;
284
+ return _this;
285
+ }
286
+ return BubbleDirective;
287
+ }(ej2AngularBase.ComplexBase));
288
+ BubbleDirective.decorators = [
289
+ { type: core.Directive, args: [{
290
+ selector: 'e-layer>e-bubbleSettings>e-bubbleSetting',
291
+ inputs: input$3,
292
+ outputs: outputs$3,
293
+ queries: {
294
+ childColorMapping: new core.ContentChild(ColorMappingsDirective)
295
+ }
296
+ },] },
297
+ ];
298
+ /**
299
+ * @nocollapse
300
+ */
301
+ BubbleDirective.ctorParameters = function () { return [
302
+ { type: core.ViewContainerRef, },
303
+ ]; };
304
+ BubbleDirective.propDecorators = {
305
+ 'tooltipSettings_template': [{ type: core.ContentChild, args: ['tooltipSettingsTemplate',] },],
306
+ };
307
+ __decorate$1([
308
+ ej2AngularBase.Template(),
309
+ __metadata$1("design:type", Object)
310
+ ], BubbleDirective.prototype, "tooltipSettings_template", void 0);
311
+ /**
312
+ * Bubble Array Directive
313
+ */
314
+ var BubblesDirective = /** @class */ (function (_super) {
315
+ __extends(BubblesDirective, _super);
316
+ function BubblesDirective() {
317
+ return _super.call(this, 'bubblesettings') || this;
318
+ }
319
+ return BubblesDirective;
320
+ }(ej2AngularBase.ArrayBase));
321
+ BubblesDirective.decorators = [
322
+ { type: core.Directive, args: [{
323
+ selector: 'e-layer>e-bubbleSettings',
324
+ queries: {
325
+ children: new core.ContentChildren(BubbleDirective)
326
+ },
327
+ },] },
328
+ ];
329
+ /**
330
+ * @nocollapse
331
+ */
332
+ BubblesDirective.ctorParameters = function () { return []; };
333
+ var __decorate$2 = (this && this.__decorate) || function (decorators, target, key, desc) {
334
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
335
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
336
+ r = Reflect.decorate(decorators, target, key, desc);
337
+ else
338
+ for (var i = decorators.length - 1; i >= 0; i--)
339
+ if (d = decorators[i])
340
+ r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
341
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
342
+ };
343
+ var __metadata$2 = (this && this.__metadata) || function (k, v) {
344
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
345
+ return Reflect.metadata(k, v);
346
+ };
347
+ var input$4 = ['angle', 'arrowSettings', 'color', 'dashArray', 'highlightSettings', 'latitude', 'longitude', 'selectionSettings', 'visible', 'width'];
348
+ var outputs$4 = [];
349
+ /**
350
+ * Represents the directive to define the navigation lines in the maps.
351
+ * ```html
352
+ * <e-layers>
353
+ * <e-layer>
354
+ * <e-navigationLineSettings>
355
+ * <e-navigationLineSetting>
356
+ * </e-navigationLineSetting>
357
+ * </e-navigationLineSettings>
358
+ * </e-layer>
359
+ * </e-layers>
360
+ * ```
361
+ */
362
+ var NavigationLineDirective = /** @class */ (function (_super) {
363
+ __extends(NavigationLineDirective, _super);
364
+ /**
365
+ * @param {?} viewContainerRef
366
+ */
367
+ function NavigationLineDirective(viewContainerRef) {
368
+ var _this = _super.call(this) || this;
369
+ _this.viewContainerRef = viewContainerRef;
370
+ ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
371
+ _this.registerEvents(outputs$4);
372
+ _this.directivePropList = input$4;
373
+ return _this;
374
+ }
375
+ return NavigationLineDirective;
376
+ }(ej2AngularBase.ComplexBase));
377
+ NavigationLineDirective.decorators = [
378
+ { type: core.Directive, args: [{
379
+ selector: 'e-layer>e-navigationLineSettings>e-navigationLineSetting',
380
+ inputs: input$4,
381
+ outputs: outputs$4,
382
+ queries: {}
383
+ },] },
384
+ ];
385
+ /**
386
+ * @nocollapse
387
+ */
388
+ NavigationLineDirective.ctorParameters = function () { return [
389
+ { type: core.ViewContainerRef, },
390
+ ]; };
391
+ NavigationLineDirective.propDecorators = {
392
+ 'tooltipSettings_template': [{ type: core.ContentChild, args: ['tooltipSettingsTemplate',] },],
393
+ };
394
+ __decorate$2([
395
+ ej2AngularBase.Template(),
396
+ __metadata$2("design:type", Object)
397
+ ], NavigationLineDirective.prototype, "tooltipSettings_template", void 0);
398
+ /**
399
+ * NavigationLine Array Directive
400
+ */
401
+ var NavigationLinesDirective = /** @class */ (function (_super) {
402
+ __extends(NavigationLinesDirective, _super);
403
+ function NavigationLinesDirective() {
404
+ return _super.call(this, 'navigationlinesettings') || this;
405
+ }
406
+ return NavigationLinesDirective;
407
+ }(ej2AngularBase.ArrayBase));
408
+ NavigationLinesDirective.decorators = [
409
+ { type: core.Directive, args: [{
410
+ selector: 'e-layer>e-navigationLineSettings',
411
+ queries: {
412
+ children: new core.ContentChildren(NavigationLineDirective)
413
+ },
414
+ },] },
415
+ ];
416
+ /**
417
+ * @nocollapse
418
+ */
419
+ NavigationLinesDirective.ctorParameters = function () { return []; };
420
+ var input$5 = ['animationDuration', 'bubbleSettings', 'dataLabelSettings', 'dataSource', 'geometryType', 'highlightSettings', 'initialShapeSelection', 'markerClusterSettings', 'markerSettings', 'navigationLineSettings', 'polygonSettings', 'query', 'selectionSettings', 'shapeData', 'shapeDataPath', 'shapePropertyPath', 'shapeSettings', 'toggleLegendSettings', 'tooltipSettings', 'type', 'urlTemplate', 'visible'];
421
+ var outputs$5 = [];
422
+ /**
423
+ * Represents the directive to define the layer of the maps.
424
+ * ```html
425
+ * <e-layers>
426
+ * <e-layer></e-layer>
427
+ * </e-layers>
428
+ * ```
429
+ */
430
+ var LayerDirective = /** @class */ (function (_super) {
431
+ __extends(LayerDirective, _super);
432
+ /**
433
+ * @param {?} viewContainerRef
434
+ */
435
+ function LayerDirective(viewContainerRef) {
436
+ var _this = _super.call(this) || this;
437
+ _this.viewContainerRef = viewContainerRef;
438
+ _this.tags = ['initialShapeSelection', 'markerSettings', 'bubbleSettings', 'navigationLineSettings'];
439
+ ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
440
+ _this.registerEvents(outputs$5);
441
+ _this.directivePropList = input$5;
442
+ return _this;
443
+ }
444
+ return LayerDirective;
445
+ }(ej2AngularBase.ComplexBase));
446
+ LayerDirective.decorators = [
447
+ { type: core.Directive, args: [{
448
+ selector: 'e-layers>e-layer',
449
+ inputs: input$5,
450
+ outputs: outputs$5,
451
+ queries: {
452
+ childInitialShapeSelection: new core.ContentChild(InitialShapeSelectionsDirective),
453
+ childMarkerSettings: new core.ContentChild(MarkersDirective),
454
+ childBubbleSettings: new core.ContentChild(BubblesDirective),
455
+ childNavigationLineSettings: new core.ContentChild(NavigationLinesDirective)
456
+ }
457
+ },] },
458
+ ];
459
+ /**
460
+ * @nocollapse
461
+ */
462
+ LayerDirective.ctorParameters = function () { return [
463
+ { type: core.ViewContainerRef, },
464
+ ]; };
465
+ /**
466
+ * Layer Array Directive
467
+ */
468
+ var LayersDirective = /** @class */ (function (_super) {
469
+ __extends(LayersDirective, _super);
470
+ function LayersDirective() {
471
+ return _super.call(this, 'layers') || this;
472
+ }
473
+ return LayersDirective;
474
+ }(ej2AngularBase.ArrayBase));
475
+ LayersDirective.decorators = [
476
+ { type: core.Directive, args: [{
477
+ selector: 'ej-maps>e-layers',
478
+ queries: {
479
+ children: new core.ContentChildren(LayerDirective)
480
+ },
481
+ },] },
482
+ ];
483
+ /**
484
+ * @nocollapse
485
+ */
486
+ LayersDirective.ctorParameters = function () { return []; };
487
+ var __decorate$3 = (this && this.__decorate) || function (decorators, target, key, desc) {
488
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
489
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
490
+ r = Reflect.decorate(decorators, target, key, desc);
491
+ else
492
+ for (var i = decorators.length - 1; i >= 0; i--)
493
+ if (d = decorators[i])
494
+ r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
495
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
496
+ };
497
+ var __metadata$3 = (this && this.__metadata) || function (k, v) {
498
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
499
+ return Reflect.metadata(k, v);
500
+ };
501
+ var input$6 = ['content', 'horizontalAlignment', 'verticalAlignment', 'x', 'y', 'zIndex'];
502
+ var outputs$6 = [];
503
+ /**
504
+ * Represents the directive to define the annotations in the maps.
505
+ * ```html
506
+ * <e-maps-annotations>
507
+ * <e-maps-annotation></e-maps-annotation>
508
+ * </e-maps-annotations>
509
+ * ```
510
+ */
511
+ var AnnotationDirective = /** @class */ (function (_super) {
512
+ __extends(AnnotationDirective, _super);
513
+ /**
514
+ * @param {?} viewContainerRef
515
+ */
516
+ function AnnotationDirective(viewContainerRef) {
517
+ var _this = _super.call(this) || this;
518
+ _this.viewContainerRef = viewContainerRef;
519
+ ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
520
+ _this.registerEvents(outputs$6);
521
+ _this.directivePropList = input$6;
522
+ return _this;
523
+ }
524
+ return AnnotationDirective;
525
+ }(ej2AngularBase.ComplexBase));
526
+ AnnotationDirective.decorators = [
527
+ { type: core.Directive, args: [{
528
+ selector: 'e-maps-annotations>e-maps-annotation',
529
+ inputs: input$6,
530
+ outputs: outputs$6,
531
+ queries: {}
532
+ },] },
533
+ ];
534
+ /**
535
+ * @nocollapse
536
+ */
537
+ AnnotationDirective.ctorParameters = function () { return [
538
+ { type: core.ViewContainerRef, },
539
+ ]; };
540
+ AnnotationDirective.propDecorators = {
541
+ 'content': [{ type: core.ContentChild, args: ['content',] },],
542
+ };
543
+ __decorate$3([
544
+ ej2AngularBase.Template(),
545
+ __metadata$3("design:type", Object)
546
+ ], AnnotationDirective.prototype, "content", void 0);
547
+ /**
548
+ * Annotation Array Directive
549
+ */
550
+ var AnnotationsDirective = /** @class */ (function (_super) {
551
+ __extends(AnnotationsDirective, _super);
552
+ function AnnotationsDirective() {
553
+ return _super.call(this, 'annotations') || this;
554
+ }
555
+ return AnnotationsDirective;
556
+ }(ej2AngularBase.ArrayBase));
557
+ AnnotationsDirective.decorators = [
558
+ { type: core.Directive, args: [{
559
+ selector: 'ej-maps>e-maps-annotations',
560
+ queries: {
561
+ children: new core.ContentChildren(AnnotationDirective)
562
+ },
563
+ },] },
564
+ ];
565
+ /**
566
+ * @nocollapse
567
+ */
568
+ AnnotationsDirective.ctorParameters = function () { return []; };
569
+ var __decorate$4 = (this && this.__decorate) || function (decorators, target, key, desc) {
570
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
571
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
572
+ r = Reflect.decorate(decorators, target, key, desc);
573
+ else
574
+ for (var i = decorators.length - 1; i >= 0; i--)
575
+ if (d = decorators[i])
576
+ r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
577
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
578
+ };
579
+ var __metadata$4 = (this && this.__metadata) || function (k, v) {
580
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
581
+ return Reflect.metadata(k, v);
582
+ };
583
+ var 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'];
584
+ var outputs$7 = ['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'];
585
+ var twoWays = ['dataSource'];
586
+ /**
587
+ * Represents the Angular Maps component.
588
+ * 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.
589
+ * ```html
590
+ * <ej-maps></ej-maps>
591
+ * ```
592
+ */
593
+ exports.MapsComponent = /** @class */ (function (_super) {
594
+ __extends(MapsComponent, _super);
595
+ /**
596
+ * @param {?} ngEle
597
+ * @param {?} srenderer
598
+ * @param {?} viewContainerRef
599
+ * @param {?} injector
600
+ */
601
+ function MapsComponent(ngEle, srenderer, viewContainerRef, injector) {
602
+ var _this = _super.call(this) || this;
603
+ _this.ngEle = ngEle;
604
+ _this.srenderer = srenderer;
605
+ _this.viewContainerRef = viewContainerRef;
606
+ _this.injector = injector;
607
+ _this.tags = ['layers', 'annotations'];
608
+ _this.element = _this.ngEle.nativeElement;
609
+ _this.injectedModules = _this.injectedModules || [];
610
+ try {
611
+ var mod = _this.injector.get('MapsBubble');
612
+ if (_this.injectedModules.indexOf(mod) === -1) {
613
+ _this.injectedModules.push(mod);
614
+ }
615
+ }
616
+ catch (_a) { }
617
+ try {
618
+ var mod = _this.injector.get('MapsLegend');
619
+ if (_this.injectedModules.indexOf(mod) === -1) {
620
+ _this.injectedModules.push(mod);
621
+ }
622
+ }
623
+ catch (_b) { }
624
+ try {
625
+ var mod = _this.injector.get('MapsMarker');
626
+ if (_this.injectedModules.indexOf(mod) === -1) {
627
+ _this.injectedModules.push(mod);
628
+ }
629
+ }
630
+ catch (_c) { }
631
+ try {
632
+ var mod = _this.injector.get('MapsHighlight');
633
+ if (_this.injectedModules.indexOf(mod) === -1) {
634
+ _this.injectedModules.push(mod);
635
+ }
636
+ }
637
+ catch (_d) { }
638
+ try {
639
+ var mod = _this.injector.get('MapsSelection');
640
+ if (_this.injectedModules.indexOf(mod) === -1) {
641
+ _this.injectedModules.push(mod);
642
+ }
643
+ }
644
+ catch (_e) { }
645
+ try {
646
+ var mod = _this.injector.get('MapsMapsTooltip');
647
+ if (_this.injectedModules.indexOf(mod) === -1) {
648
+ _this.injectedModules.push(mod);
649
+ }
650
+ }
651
+ catch (_f) { }
652
+ try {
653
+ var mod = _this.injector.get('MapsZoom');
654
+ if (_this.injectedModules.indexOf(mod) === -1) {
655
+ _this.injectedModules.push(mod);
656
+ }
657
+ }
658
+ catch (_g) { }
659
+ try {
660
+ var mod = _this.injector.get('MapsDataLabel');
661
+ if (_this.injectedModules.indexOf(mod) === -1) {
662
+ _this.injectedModules.push(mod);
663
+ }
664
+ }
665
+ catch (_h) { }
666
+ try {
667
+ var mod = _this.injector.get('MapsNavigationLine');
668
+ if (_this.injectedModules.indexOf(mod) === -1) {
669
+ _this.injectedModules.push(mod);
670
+ }
671
+ }
672
+ catch (_j) { }
673
+ try {
674
+ var mod = _this.injector.get('MapsAnnotations');
675
+ if (_this.injectedModules.indexOf(mod) === -1) {
676
+ _this.injectedModules.push(mod);
677
+ }
678
+ }
679
+ catch (_k) { }
680
+ try {
681
+ var mod = _this.injector.get('MapsPrint');
682
+ if (_this.injectedModules.indexOf(mod) === -1) {
683
+ _this.injectedModules.push(mod);
684
+ }
685
+ }
686
+ catch (_l) { }
687
+ try {
688
+ var mod = _this.injector.get('MapsPdfExport');
689
+ if (_this.injectedModules.indexOf(mod) === -1) {
690
+ _this.injectedModules.push(mod);
691
+ }
692
+ }
693
+ catch (_m) { }
694
+ try {
695
+ var mod = _this.injector.get('MapsImageExport');
696
+ if (_this.injectedModules.indexOf(mod) === -1) {
697
+ _this.injectedModules.push(mod);
698
+ }
699
+ }
700
+ catch (_o) { }
701
+ try {
702
+ var mod = _this.injector.get('MapsPolygon');
703
+ if (_this.injectedModules.indexOf(mod) === -1) {
704
+ _this.injectedModules.push(mod);
705
+ }
706
+ }
707
+ catch (_p) { }
708
+ _this.registerEvents(outputs$7);
709
+ _this.addTwoWay.call(_this, twoWays);
710
+ ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
711
+ _this.context = new ej2AngularBase.ComponentBase();
712
+ return _this;
713
+ }
714
+ /**
715
+ * @return {?}
716
+ */
717
+ MapsComponent.prototype.ngOnInit = function () {
718
+ this.context.ngOnInit(this);
719
+ };
720
+ /**
721
+ * @return {?}
722
+ */
723
+ MapsComponent.prototype.ngAfterViewInit = function () {
724
+ this.context.ngAfterViewInit(this);
725
+ };
726
+ /**
727
+ * @return {?}
728
+ */
729
+ MapsComponent.prototype.ngOnDestroy = function () {
730
+ this.context.ngOnDestroy(this);
731
+ };
732
+ /**
733
+ * @return {?}
734
+ */
735
+ MapsComponent.prototype.ngAfterContentChecked = function () {
736
+ this.tagObjects[0].instance = this.childLayers;
737
+ if (this.childAnnotations) {
738
+ this.tagObjects[1].instance = /** @type {?} */ (this.childAnnotations);
739
+ }
740
+ this.context.ngAfterContentChecked(this);
741
+ };
742
+ return MapsComponent;
743
+ }(ej2Maps.Maps));
744
+ exports.MapsComponent.decorators = [
745
+ { type: core.Component, args: [{
746
+ selector: 'ejs-maps',
747
+ inputs: inputs,
748
+ outputs: outputs$7,
749
+ template: '',
750
+ changeDetection: core.ChangeDetectionStrategy.OnPush,
751
+ queries: {
752
+ childLayers: new core.ContentChild(LayersDirective),
753
+ childAnnotations: new core.ContentChild(AnnotationsDirective)
754
+ }
755
+ },] },
756
+ ];
757
+ /**
758
+ * @nocollapse
759
+ */
760
+ exports.MapsComponent.ctorParameters = function () { return [
761
+ { type: core.ElementRef, },
762
+ { type: core.Renderer2, },
763
+ { type: core.ViewContainerRef, },
764
+ { type: core.Injector, },
765
+ ]; };
766
+ exports.MapsComponent = __decorate$4([
767
+ ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase]),
768
+ __metadata$4("design:paramtypes", [core.ElementRef,
769
+ core.Renderer2,
770
+ core.ViewContainerRef,
771
+ core.Injector])
772
+ ], exports.MapsComponent);
773
+ /**
774
+ * NgModule definition for the Maps component.
775
+ */
776
+ var MapsModule = /** @class */ (function () {
777
+ function MapsModule() {
778
+ }
779
+ return MapsModule;
780
+ }());
781
+ MapsModule.decorators = [
782
+ { type: core.NgModule, args: [{
783
+ imports: [common.CommonModule],
784
+ declarations: [
785
+ exports.MapsComponent,
786
+ InitialShapeSelectionDirective,
787
+ InitialShapeSelectionsDirective,
788
+ MarkerDirective,
789
+ MarkersDirective,
790
+ ColorMappingDirective,
791
+ ColorMappingsDirective,
792
+ BubbleDirective,
793
+ BubblesDirective,
794
+ NavigationLineDirective,
795
+ NavigationLinesDirective,
796
+ LayerDirective,
797
+ LayersDirective,
798
+ AnnotationDirective,
799
+ AnnotationsDirective
800
+ ],
801
+ exports: [
802
+ exports.MapsComponent,
803
+ InitialShapeSelectionDirective,
804
+ InitialShapeSelectionsDirective,
805
+ MarkerDirective,
806
+ MarkersDirective,
807
+ ColorMappingDirective,
808
+ ColorMappingsDirective,
809
+ BubbleDirective,
810
+ BubblesDirective,
811
+ NavigationLineDirective,
812
+ NavigationLinesDirective,
813
+ LayerDirective,
814
+ LayersDirective,
815
+ AnnotationDirective,
816
+ AnnotationsDirective
817
+ ]
818
+ },] },
819
+ ];
820
+ /**
821
+ * @nocollapse
822
+ */
823
+ MapsModule.ctorParameters = function () { return []; };
824
+ var BubbleService = { provide: 'MapsBubble', useValue: ej2Maps.Bubble };
825
+ var LegendService = { provide: 'MapsLegend', useValue: ej2Maps.Legend };
826
+ var MarkerService = { provide: 'MapsMarker', useValue: ej2Maps.Marker };
827
+ var HighlightService = { provide: 'MapsHighlight', useValue: ej2Maps.Highlight };
828
+ var SelectionService = { provide: 'MapsSelection', useValue: ej2Maps.Selection };
829
+ var MapsTooltipService = { provide: 'MapsMapsTooltip', useValue: ej2Maps.MapsTooltip };
830
+ var ZoomService = { provide: 'MapsZoom', useValue: ej2Maps.Zoom };
831
+ var DataLabelService = { provide: 'MapsDataLabel', useValue: ej2Maps.DataLabel };
832
+ var NavigationLineService = { provide: 'MapsNavigationLine', useValue: ej2Maps.NavigationLine };
833
+ var AnnotationsService = { provide: 'MapsAnnotations', useValue: ej2Maps.Annotations };
834
+ var PrintService = { provide: 'MapsPrint', useValue: ej2Maps.Print };
835
+ var PdfExportService = { provide: 'MapsPdfExport', useValue: ej2Maps.PdfExport };
836
+ var ImageExportService = { provide: 'MapsImageExport', useValue: ej2Maps.ImageExport };
837
+ var PolygonService = { provide: 'MapsPolygon', useValue: ej2Maps.Polygon };
838
+ /**
839
+ * NgModule definition for the Maps component with providers.
840
+ */
841
+ var MapsAllModule = /** @class */ (function () {
842
+ function MapsAllModule() {
843
+ }
844
+ return MapsAllModule;
845
+ }());
846
+ MapsAllModule.decorators = [
847
+ { type: core.NgModule, args: [{
848
+ imports: [common.CommonModule, MapsModule],
849
+ exports: [
850
+ MapsModule
851
+ ],
852
+ providers: [
853
+ BubbleService,
854
+ LegendService,
855
+ MarkerService,
856
+ HighlightService,
857
+ SelectionService,
858
+ MapsTooltipService,
859
+ ZoomService,
860
+ DataLabelService,
861
+ NavigationLineService,
862
+ AnnotationsService,
863
+ PrintService,
864
+ PdfExportService,
865
+ ImageExportService,
866
+ PolygonService
867
+ ]
868
+ },] },
869
+ ];
870
+ /**
871
+ * @nocollapse
872
+ */
873
+ MapsAllModule.ctorParameters = function () { return []; };
874
+
875
+ exports.InitialShapeSelectionDirective = InitialShapeSelectionDirective;
876
+ exports.InitialShapeSelectionsDirective = InitialShapeSelectionsDirective;
877
+ exports.MarkerDirective = MarkerDirective;
878
+ exports.MarkersDirective = MarkersDirective;
879
+ exports.ColorMappingDirective = ColorMappingDirective;
880
+ exports.ColorMappingsDirective = ColorMappingsDirective;
881
+ exports.BubbleDirective = BubbleDirective;
882
+ exports.BubblesDirective = BubblesDirective;
883
+ exports.NavigationLineDirective = NavigationLineDirective;
884
+ exports.NavigationLinesDirective = NavigationLinesDirective;
885
+ exports.LayerDirective = LayerDirective;
886
+ exports.LayersDirective = LayersDirective;
887
+ exports.AnnotationDirective = AnnotationDirective;
888
+ exports.AnnotationsDirective = AnnotationsDirective;
889
+ exports.MapsModule = MapsModule;
890
+ exports.MapsAllModule = MapsAllModule;
891
+ exports.BubbleService = BubbleService;
892
+ exports.LegendService = LegendService;
893
+ exports.MarkerService = MarkerService;
894
+ exports.HighlightService = HighlightService;
895
+ exports.SelectionService = SelectionService;
896
+ exports.MapsTooltipService = MapsTooltipService;
897
+ exports.ZoomService = ZoomService;
898
+ exports.DataLabelService = DataLabelService;
899
+ exports.NavigationLineService = NavigationLineService;
900
+ exports.AnnotationsService = AnnotationsService;
901
+ exports.PrintService = PrintService;
902
+ exports.PdfExportService = PdfExportService;
903
+ exports.ImageExportService = ImageExportService;
904
+ exports.PolygonService = PolygonService;
905
+ exports.ɵa = inputs;
906
+ exports.ɵb = outputs$7;
907
+ exports.Maps = ej2Maps.Maps;
908
+ exports.load = ej2Maps.load;
909
+ exports.loaded = ej2Maps.loaded;
910
+ exports.click = ej2Maps.click;
911
+ exports.onclick = ej2Maps.onclick;
912
+ exports.rightClick = ej2Maps.rightClick;
913
+ exports.doubleClick = ej2Maps.doubleClick;
914
+ exports.resize = ej2Maps.resize;
915
+ exports.tooltipRender = ej2Maps.tooltipRender;
916
+ exports.shapeSelected = ej2Maps.shapeSelected;
917
+ exports.shapeHighlight = ej2Maps.shapeHighlight;
918
+ exports.mousemove = ej2Maps.mousemove;
919
+ exports.mouseup = ej2Maps.mouseup;
920
+ exports.mousedown = ej2Maps.mousedown;
921
+ exports.layerRendering = ej2Maps.layerRendering;
922
+ exports.shapeRendering = ej2Maps.shapeRendering;
923
+ exports.markerRendering = ej2Maps.markerRendering;
924
+ exports.markerClusterRendering = ej2Maps.markerClusterRendering;
925
+ exports.markerClick = ej2Maps.markerClick;
926
+ exports.markerDragStart = ej2Maps.markerDragStart;
927
+ exports.markerDragEnd = ej2Maps.markerDragEnd;
928
+ exports.markerClusterClick = ej2Maps.markerClusterClick;
929
+ exports.markerMouseMove = ej2Maps.markerMouseMove;
930
+ exports.mouseMove = ej2Maps.mouseMove;
931
+ exports.markerClusterMouseMove = ej2Maps.markerClusterMouseMove;
932
+ exports.dataLabelRendering = ej2Maps.dataLabelRendering;
933
+ exports.bubbleRendering = ej2Maps.bubbleRendering;
934
+ exports.bubbleClick = ej2Maps.bubbleClick;
935
+ exports.bubbleMouseMove = ej2Maps.bubbleMouseMove;
936
+ exports.animationComplete = ej2Maps.animationComplete;
937
+ exports.legendRendering = ej2Maps.legendRendering;
938
+ exports.annotationRendering = ej2Maps.annotationRendering;
939
+ exports.itemSelection = ej2Maps.itemSelection;
940
+ exports.panComplete = ej2Maps.panComplete;
941
+ exports.zoomComplete = ej2Maps.zoomComplete;
942
+ exports.itemHighlight = ej2Maps.itemHighlight;
943
+ exports.beforePrint = ej2Maps.beforePrint;
944
+ exports.zoomIn = ej2Maps.zoomIn;
945
+ exports.zoomOut = ej2Maps.zoomOut;
946
+ exports.pan = ej2Maps.pan;
947
+ exports.Annotation = ej2Maps.Annotation;
948
+ exports.Arrow = ej2Maps.Arrow;
949
+ exports.Font = ej2Maps.Font;
950
+ exports.ZoomToolbarButtonSettings = ej2Maps.ZoomToolbarButtonSettings;
951
+ exports.ZoomToolbarTooltipSettings = ej2Maps.ZoomToolbarTooltipSettings;
952
+ exports.ZoomToolbarSettings = ej2Maps.ZoomToolbarSettings;
953
+ exports.Border = ej2Maps.Border;
954
+ exports.CenterPosition = ej2Maps.CenterPosition;
955
+ exports.TooltipSettings = ej2Maps.TooltipSettings;
956
+ exports.PolygonTooltipSettings = ej2Maps.PolygonTooltipSettings;
957
+ exports.Margin = ej2Maps.Margin;
958
+ exports.ConnectorLineSettings = ej2Maps.ConnectorLineSettings;
959
+ exports.MarkerClusterSettings = ej2Maps.MarkerClusterSettings;
960
+ exports.MarkerClusterData = ej2Maps.MarkerClusterData;
961
+ exports.ColorMappingSettings = ej2Maps.ColorMappingSettings;
962
+ exports.InitialMarkerSelectionSettings = ej2Maps.InitialMarkerSelectionSettings;
963
+ exports.InitialShapeSelectionSettings = ej2Maps.InitialShapeSelectionSettings;
964
+ exports.SelectionSettings = ej2Maps.SelectionSettings;
965
+ exports.HighlightSettings = ej2Maps.HighlightSettings;
966
+ exports.PolygonSetting = ej2Maps.PolygonSetting;
967
+ exports.PolygonSettings = ej2Maps.PolygonSettings;
968
+ exports.NavigationLineSettings = ej2Maps.NavigationLineSettings;
969
+ exports.BubbleSettings = ej2Maps.BubbleSettings;
970
+ exports.CommonTitleSettings = ej2Maps.CommonTitleSettings;
971
+ exports.SubTitleSettings = ej2Maps.SubTitleSettings;
972
+ exports.TitleSettings = ej2Maps.TitleSettings;
973
+ exports.ZoomSettings = ej2Maps.ZoomSettings;
974
+ exports.ToggleLegendSettings = ej2Maps.ToggleLegendSettings;
975
+ exports.LegendSettings = ej2Maps.LegendSettings;
976
+ exports.DataLabelSettings = ej2Maps.DataLabelSettings;
977
+ exports.ShapeSettings = ej2Maps.ShapeSettings;
978
+ exports.MarkerBase = ej2Maps.MarkerBase;
979
+ exports.MarkerSettings = ej2Maps.MarkerSettings;
980
+ exports.LayerSettings = ej2Maps.LayerSettings;
981
+ exports.Tile = ej2Maps.Tile;
982
+ exports.MapsAreaSettings = ej2Maps.MapsAreaSettings;
983
+ exports.Size = ej2Maps.Size;
984
+ exports.stringToNumber = ej2Maps.stringToNumber;
985
+ exports.calculateSize = ej2Maps.calculateSize;
986
+ exports.createSvg = ej2Maps.createSvg;
987
+ exports.getMousePosition = ej2Maps.getMousePosition;
988
+ exports.degreesToRadians = ej2Maps.degreesToRadians;
989
+ exports.radiansToDegrees = ej2Maps.radiansToDegrees;
990
+ exports.convertGeoToPoint = ej2Maps.convertGeoToPoint;
991
+ exports.calculatePolygonPath = ej2Maps.calculatePolygonPath;
992
+ exports.convertTileLatLongToPoint = ej2Maps.convertTileLatLongToPoint;
993
+ exports.xToCoordinate = ej2Maps.xToCoordinate;
994
+ exports.yToCoordinate = ej2Maps.yToCoordinate;
995
+ exports.aitoff = ej2Maps.aitoff;
996
+ exports.roundTo = ej2Maps.roundTo;
997
+ exports.sinci = ej2Maps.sinci;
998
+ exports.acos = ej2Maps.acos;
999
+ exports.calculateBound = ej2Maps.calculateBound;
1000
+ exports.triggerDownload = ej2Maps.triggerDownload;
1001
+ exports.Point = ej2Maps.Point;
1002
+ exports.RelativePoint = ej2Maps.RelativePoint;
1003
+ exports.Coordinate = ej2Maps.Coordinate;
1004
+ exports.MinMax = ej2Maps.MinMax;
1005
+ exports.GeoLocation = ej2Maps.GeoLocation;
1006
+ exports.measureText = ej2Maps.measureText;
1007
+ exports.measureTextElement = ej2Maps.measureTextElement;
1008
+ exports.TextOption = ej2Maps.TextOption;
1009
+ exports.PathOption = ej2Maps.PathOption;
1010
+ exports.ColorValue = ej2Maps.ColorValue;
1011
+ exports.RectOption = ej2Maps.RectOption;
1012
+ exports.CircleOption = ej2Maps.CircleOption;
1013
+ exports.PolygonOption = ej2Maps.PolygonOption;
1014
+ exports.PolylineOption = ej2Maps.PolylineOption;
1015
+ exports.LineOption = ej2Maps.LineOption;
1016
+ exports.Line = ej2Maps.Line;
1017
+ exports.MapLocation = ej2Maps.MapLocation;
1018
+ exports.Rect = ej2Maps.Rect;
1019
+ exports.PatternOptions = ej2Maps.PatternOptions;
1020
+ exports.renderTextElement = ej2Maps.renderTextElement;
1021
+ exports.convertElement = ej2Maps.convertElement;
1022
+ exports.formatValue = ej2Maps.formatValue;
1023
+ exports.convertStringToValue = ej2Maps.convertStringToValue;
1024
+ exports.convertElementFromLabel = ej2Maps.convertElementFromLabel;
1025
+ exports.drawSymbols = ej2Maps.drawSymbols;
1026
+ exports.getValueFromObject = ej2Maps.getValueFromObject;
1027
+ exports.markerColorChoose = ej2Maps.markerColorChoose;
1028
+ exports.markerShapeChoose = ej2Maps.markerShapeChoose;
1029
+ exports.clusterTemplate = ej2Maps.clusterTemplate;
1030
+ exports.markerClusterListHandler = ej2Maps.markerClusterListHandler;
1031
+ exports.markerBoundsComparer = ej2Maps.markerBoundsComparer;
1032
+ exports.mergeSeparateCluster = ej2Maps.mergeSeparateCluster;
1033
+ exports.clusterSeparate = ej2Maps.clusterSeparate;
1034
+ exports.marker = ej2Maps.marker;
1035
+ exports.markerTemplate = ej2Maps.markerTemplate;
1036
+ exports.maintainSelection = ej2Maps.maintainSelection;
1037
+ exports.maintainToggleSelection = ej2Maps.maintainToggleSelection;
1038
+ exports.maintainStyleClass = ej2Maps.maintainStyleClass;
1039
+ exports.appendShape = ej2Maps.appendShape;
1040
+ exports.drawCircle = ej2Maps.drawCircle;
1041
+ exports.drawRectangle = ej2Maps.drawRectangle;
1042
+ exports.drawPath = ej2Maps.drawPath;
1043
+ exports.drawPolygon = ej2Maps.drawPolygon;
1044
+ exports.drawPolyline = ej2Maps.drawPolyline;
1045
+ exports.drawLine = ej2Maps.drawLine;
1046
+ exports.calculateShapes = ej2Maps.calculateShapes;
1047
+ exports.drawDiamond = ej2Maps.drawDiamond;
1048
+ exports.drawTriangle = ej2Maps.drawTriangle;
1049
+ exports.drawCross = ej2Maps.drawCross;
1050
+ exports.drawHorizontalLine = ej2Maps.drawHorizontalLine;
1051
+ exports.drawVerticalLine = ej2Maps.drawVerticalLine;
1052
+ exports.drawStar = ej2Maps.drawStar;
1053
+ exports.drawBalloon = ej2Maps.drawBalloon;
1054
+ exports.drawPattern = ej2Maps.drawPattern;
1055
+ exports.getFieldData = ej2Maps.getFieldData;
1056
+ exports.checkShapeDataFields = ej2Maps.checkShapeDataFields;
1057
+ exports.checkPropertyPath = ej2Maps.checkPropertyPath;
1058
+ exports.filter = ej2Maps.filter;
1059
+ exports.getRatioOfBubble = ej2Maps.getRatioOfBubble;
1060
+ exports.findMidPointOfPolygon = ej2Maps.findMidPointOfPolygon;
1061
+ exports.isCustomPath = ej2Maps.isCustomPath;
1062
+ exports.textTrim = ej2Maps.textTrim;
1063
+ exports.findPosition = ej2Maps.findPosition;
1064
+ exports.removeElement = ej2Maps.removeElement;
1065
+ exports.calculateCenterFromPixel = ej2Maps.calculateCenterFromPixel;
1066
+ exports.getTranslate = ej2Maps.getTranslate;
1067
+ exports.getZoomTranslate = ej2Maps.getZoomTranslate;
1068
+ exports.fixInitialScaleForTile = ej2Maps.fixInitialScaleForTile;
1069
+ exports.getElementByID = ej2Maps.getElementByID;
1070
+ exports.getProcessedMarginValue = ej2Maps.getProcessedMarginValue;
1071
+ exports.Internalize = ej2Maps.Internalize;
1072
+ exports.getTemplateFunction = ej2Maps.getTemplateFunction;
1073
+ exports.getElement = ej2Maps.getElement;
1074
+ exports.getShapeData = ej2Maps.getShapeData;
1075
+ exports.triggerShapeEvent = ej2Maps.triggerShapeEvent;
1076
+ exports.getElementsByClassName = ej2Maps.getElementsByClassName;
1077
+ exports.querySelector = ej2Maps.querySelector;
1078
+ exports.getTargetElement = ej2Maps.getTargetElement;
1079
+ exports.createStyle = ej2Maps.createStyle;
1080
+ exports.customizeStyle = ej2Maps.customizeStyle;
1081
+ exports.triggerItemSelectionEvent = ej2Maps.triggerItemSelectionEvent;
1082
+ exports.removeClass = ej2Maps.removeClass;
1083
+ exports.elementAnimate = ej2Maps.elementAnimate;
1084
+ exports.timeout = ej2Maps.timeout;
1085
+ exports.showTooltip = ej2Maps.showTooltip;
1086
+ exports.wordWrap = ej2Maps.wordWrap;
1087
+ exports.createTooltip = ej2Maps.createTooltip;
1088
+ exports.getHexColor = ej2Maps.getHexColor;
1089
+ exports.drawSymbol = ej2Maps.drawSymbol;
1090
+ exports.renderLegendShape = ej2Maps.renderLegendShape;
1091
+ exports.getElementOffset = ej2Maps.getElementOffset;
1092
+ exports.changeBorderWidth = ej2Maps.changeBorderWidth;
1093
+ exports.changeNavaigationLineWidth = ej2Maps.changeNavaigationLineWidth;
1094
+ exports.targetTouches = ej2Maps.targetTouches;
1095
+ exports.calculateScale = ej2Maps.calculateScale;
1096
+ exports.getDistance = ej2Maps.getDistance;
1097
+ exports.getTouches = ej2Maps.getTouches;
1098
+ exports.getTouchCenter = ej2Maps.getTouchCenter;
1099
+ exports.sum = ej2Maps.sum;
1100
+ exports.zoomAnimate = ej2Maps.zoomAnimate;
1101
+ exports.animate = ej2Maps.animate;
1102
+ exports.MapAjax = ej2Maps.MapAjax;
1103
+ exports.smoothTranslate = ej2Maps.smoothTranslate;
1104
+ exports.compareZoomFactor = ej2Maps.compareZoomFactor;
1105
+ exports.calculateZoomLevel = ej2Maps.calculateZoomLevel;
1106
+ exports.processResult = ej2Maps.processResult;
1107
+ exports.LayerPanel = ej2Maps.LayerPanel;
1108
+ exports.Bubble = ej2Maps.Bubble;
1109
+ exports.BingMap = ej2Maps.BingMap;
1110
+ exports.Marker = ej2Maps.Marker;
1111
+ exports.Polygon = ej2Maps.Polygon;
1112
+ exports.ColorMapping = ej2Maps.ColorMapping;
1113
+ exports.DataLabel = ej2Maps.DataLabel;
1114
+ exports.NavigationLine = ej2Maps.NavigationLine;
1115
+ exports.Legend = ej2Maps.Legend;
1116
+ exports.Highlight = ej2Maps.Highlight;
1117
+ exports.Selection = ej2Maps.Selection;
1118
+ exports.MapsTooltip = ej2Maps.MapsTooltip;
1119
+ exports.Zoom = ej2Maps.Zoom;
1120
+ exports.Annotations = ej2Maps.Annotations;
1121
+ exports.Print = ej2Maps.Print;
1122
+ exports.ImageExport = ej2Maps.ImageExport;
1123
+ exports.PdfExport = ej2Maps.PdfExport;
1124
+
1125
+ Object.defineProperty(exports, '__esModule', { value: true });
1126
+
1127
+ })));
1128
+ //# sourceMappingURL=ej2-angular-maps.umd.js.map