@syncfusion/ej2-angular-maps 25.2.5-ngcc → 26.1.35-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.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: ej2-angular-maps.umd.js
3
- * version : 25.2.5
3
+ * version : 26.1.35
4
4
  * Copyright Syncfusion Inc. 2001 - 2023. All rights reserved.
5
5
  * Use of this code is subject to the terms of our license.
6
6
  * A copy of the current license can be obtained at any time by e-mailing
@@ -25,10 +25,24 @@ var __extends = (this && this.__extends) || (function () {
25
25
  })();
26
26
  var input = ['shapePath', 'shapeValue'];
27
27
  var outputs = [];
28
-
29
- var InitialShapeSelectionDirective = (function (_super) {
28
+ /**
29
+ * Represents the directive to configure the selection of the shapes when the maps is initially rendered.
30
+ * ```html
31
+ * <e-layers>
32
+ * <e-layer>
33
+ * <e-initialShapeSelections>
34
+ * <e-initialShapeSelection>
35
+ * </e-initialShapeSelection>
36
+ * </e-initialShapeSelections>
37
+ * </e-layer>
38
+ * </e-layers>
39
+ * ```
40
+ */
41
+ var InitialShapeSelectionDirective = /** @class */ (function (_super) {
30
42
  __extends(InitialShapeSelectionDirective, _super);
31
-
43
+ /**
44
+ * @param {?} viewContainerRef
45
+ */
32
46
  function InitialShapeSelectionDirective(viewContainerRef) {
33
47
  var _this = _super.call(this) || this;
34
48
  _this.viewContainerRef = viewContainerRef;
@@ -47,12 +61,16 @@ InitialShapeSelectionDirective.decorators = [
47
61
  queries: {}
48
62
  },] },
49
63
  ];
50
-
64
+ /**
65
+ * @nocollapse
66
+ */
51
67
  InitialShapeSelectionDirective.ctorParameters = function () { return [
52
68
  { type: core.ViewContainerRef, },
53
69
  ]; };
54
-
55
- var InitialShapeSelectionsDirective = (function (_super) {
70
+ /**
71
+ * InitialShapeSelection Array Directive
72
+ */
73
+ var InitialShapeSelectionsDirective = /** @class */ (function (_super) {
56
74
  __extends(InitialShapeSelectionsDirective, _super);
57
75
  function InitialShapeSelectionsDirective() {
58
76
  return _super.call(this, 'initialshapeselection') || this;
@@ -67,7 +85,9 @@ InitialShapeSelectionsDirective.decorators = [
67
85
  },
68
86
  },] },
69
87
  ];
70
-
88
+ /**
89
+ * @nocollapse
90
+ */
71
91
  InitialShapeSelectionsDirective.ctorParameters = function () { return []; };
72
92
  var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
73
93
  var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
@@ -85,10 +105,24 @@ var __metadata = (this && this.__metadata) || function (k, v) {
85
105
  };
86
106
  var input$1 = ['animationDelay', 'animationDuration', 'border', 'colorValuePath', 'dashArray', 'dataSource', 'enableDrag', 'fill', 'height', 'highlightSettings', 'imageUrl', 'imageUrlValuePath', 'initialMarkerSelection', 'latitudeValuePath', 'legendText', 'longitudeValuePath', 'offset', 'opacity', 'query', 'selectionSettings', 'shape', 'shapeValuePath', 'template', 'tooltipSettings', 'visible', 'width'];
87
107
  var outputs$1 = [];
88
-
89
- var MarkerDirective = (function (_super) {
108
+ /**
109
+ * Represents the directive to define the markers in the maps.
110
+ * ```html
111
+ * <e-layers>
112
+ * <e-layer>
113
+ * <e-markerSettings>
114
+ * <e-markerSetting>
115
+ * </e-markerSetting>
116
+ * </e-markerSettings>
117
+ * </e-layer>
118
+ * </e-layers>
119
+ * ```
120
+ */
121
+ var MarkerDirective = /** @class */ (function (_super) {
90
122
  __extends(MarkerDirective, _super);
91
-
123
+ /**
124
+ * @param {?} viewContainerRef
125
+ */
92
126
  function MarkerDirective(viewContainerRef) {
93
127
  var _this = _super.call(this) || this;
94
128
  _this.viewContainerRef = viewContainerRef;
@@ -107,7 +141,9 @@ MarkerDirective.decorators = [
107
141
  queries: {}
108
142
  },] },
109
143
  ];
110
-
144
+ /**
145
+ * @nocollapse
146
+ */
111
147
  MarkerDirective.ctorParameters = function () { return [
112
148
  { type: core.ViewContainerRef, },
113
149
  ]; };
@@ -123,8 +159,10 @@ __decorate([
123
159
  ej2AngularBase.Template(),
124
160
  __metadata("design:type", Object)
125
161
  ], MarkerDirective.prototype, "tooltipSettings_template", void 0);
126
-
127
- var MarkersDirective = (function (_super) {
162
+ /**
163
+ * Marker Array Directive
164
+ */
165
+ var MarkersDirective = /** @class */ (function (_super) {
128
166
  __extends(MarkersDirective, _super);
129
167
  function MarkersDirective() {
130
168
  return _super.call(this, 'markersettings') || this;
@@ -139,14 +177,32 @@ MarkersDirective.decorators = [
139
177
  },
140
178
  },] },
141
179
  ];
142
-
180
+ /**
181
+ * @nocollapse
182
+ */
143
183
  MarkersDirective.ctorParameters = function () { return []; };
144
184
  var input$2 = ['color', 'from', 'label', 'maxOpacity', 'minOpacity', 'showLegend', 'to', 'value'];
145
185
  var outputs$2 = [];
146
-
147
- var ColorMappingDirective = (function (_super) {
186
+ /**
187
+ * Represents the directive to define the bubble color mapping in the maps.
188
+ * ```html
189
+ * <e-layers>
190
+ * <e-layer>
191
+ * <e-bubbleSettings>
192
+ * <e-colorMappings>
193
+ * <e-colorMapping>
194
+ * </e-colorMapping>
195
+ * </e-colorMappings>
196
+ * </e-bubbleSettings>
197
+ * </e-layer>
198
+ * </e-layers>
199
+ * ```
200
+ */
201
+ var ColorMappingDirective = /** @class */ (function (_super) {
148
202
  __extends(ColorMappingDirective, _super);
149
-
203
+ /**
204
+ * @param {?} viewContainerRef
205
+ */
150
206
  function ColorMappingDirective(viewContainerRef) {
151
207
  var _this = _super.call(this) || this;
152
208
  _this.viewContainerRef = viewContainerRef;
@@ -165,12 +221,16 @@ ColorMappingDirective.decorators = [
165
221
  queries: {}
166
222
  },] },
167
223
  ];
168
-
224
+ /**
225
+ * @nocollapse
226
+ */
169
227
  ColorMappingDirective.ctorParameters = function () { return [
170
228
  { type: core.ViewContainerRef, },
171
229
  ]; };
172
-
173
- var ColorMappingsDirective = (function (_super) {
230
+ /**
231
+ * ColorMapping Array Directive
232
+ */
233
+ var ColorMappingsDirective = /** @class */ (function (_super) {
174
234
  __extends(ColorMappingsDirective, _super);
175
235
  function ColorMappingsDirective() {
176
236
  return _super.call(this, 'colormapping') || this;
@@ -185,7 +245,9 @@ ColorMappingsDirective.decorators = [
185
245
  },
186
246
  },] },
187
247
  ];
188
-
248
+ /**
249
+ * @nocollapse
250
+ */
189
251
  ColorMappingsDirective.ctorParameters = function () { return []; };
190
252
  var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
191
253
  var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
@@ -203,10 +265,24 @@ var __metadata$1 = (this && this.__metadata) || function (k, v) {
203
265
  };
204
266
  var input$3 = ['animationDelay', 'animationDuration', 'border', 'bubbleType', 'colorMapping', 'colorValuePath', 'dataSource', 'fill', 'highlightSettings', 'maxRadius', 'minRadius', 'opacity', 'query', 'selectionSettings', 'tooltipSettings', 'valuePath', 'visible'];
205
267
  var outputs$3 = [];
206
-
207
- var BubbleDirective = (function (_super) {
268
+ /**
269
+ * Represents the directive to define the bubbles in the maps.
270
+ * ```html
271
+ * <e-layers>
272
+ * <e-layer>
273
+ * <e-bubbleSettings>
274
+ * <e-bubbleSetting>
275
+ * </e-bubbleSetting>
276
+ * </e-bubbleSettings>
277
+ * </e-layer>
278
+ * </e-layers>
279
+ * ```
280
+ */
281
+ var BubbleDirective = /** @class */ (function (_super) {
208
282
  __extends(BubbleDirective, _super);
209
-
283
+ /**
284
+ * @param {?} viewContainerRef
285
+ */
210
286
  function BubbleDirective(viewContainerRef) {
211
287
  var _this = _super.call(this) || this;
212
288
  _this.viewContainerRef = viewContainerRef;
@@ -228,7 +304,9 @@ BubbleDirective.decorators = [
228
304
  }
229
305
  },] },
230
306
  ];
231
-
307
+ /**
308
+ * @nocollapse
309
+ */
232
310
  BubbleDirective.ctorParameters = function () { return [
233
311
  { type: core.ViewContainerRef, },
234
312
  ]; };
@@ -239,8 +317,10 @@ __decorate$1([
239
317
  ej2AngularBase.Template(),
240
318
  __metadata$1("design:type", Object)
241
319
  ], BubbleDirective.prototype, "tooltipSettings_template", void 0);
242
-
243
- var BubblesDirective = (function (_super) {
320
+ /**
321
+ * Bubble Array Directive
322
+ */
323
+ var BubblesDirective = /** @class */ (function (_super) {
244
324
  __extends(BubblesDirective, _super);
245
325
  function BubblesDirective() {
246
326
  return _super.call(this, 'bubblesettings') || this;
@@ -255,7 +335,9 @@ BubblesDirective.decorators = [
255
335
  },
256
336
  },] },
257
337
  ];
258
-
338
+ /**
339
+ * @nocollapse
340
+ */
259
341
  BubblesDirective.ctorParameters = function () { return []; };
260
342
  var __decorate$2 = (this && this.__decorate) || function (decorators, target, key, desc) {
261
343
  var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
@@ -273,10 +355,24 @@ var __metadata$2 = (this && this.__metadata) || function (k, v) {
273
355
  };
274
356
  var input$4 = ['angle', 'arrowSettings', 'color', 'dashArray', 'highlightSettings', 'latitude', 'longitude', 'selectionSettings', 'visible', 'width'];
275
357
  var outputs$4 = [];
276
-
277
- var NavigationLineDirective = (function (_super) {
358
+ /**
359
+ * Represents the directive to define the navigation lines in the maps.
360
+ * ```html
361
+ * <e-layers>
362
+ * <e-layer>
363
+ * <e-navigationLineSettings>
364
+ * <e-navigationLineSetting>
365
+ * </e-navigationLineSetting>
366
+ * </e-navigationLineSettings>
367
+ * </e-layer>
368
+ * </e-layers>
369
+ * ```
370
+ */
371
+ var NavigationLineDirective = /** @class */ (function (_super) {
278
372
  __extends(NavigationLineDirective, _super);
279
-
373
+ /**
374
+ * @param {?} viewContainerRef
375
+ */
280
376
  function NavigationLineDirective(viewContainerRef) {
281
377
  var _this = _super.call(this) || this;
282
378
  _this.viewContainerRef = viewContainerRef;
@@ -295,7 +391,9 @@ NavigationLineDirective.decorators = [
295
391
  queries: {}
296
392
  },] },
297
393
  ];
298
-
394
+ /**
395
+ * @nocollapse
396
+ */
299
397
  NavigationLineDirective.ctorParameters = function () { return [
300
398
  { type: core.ViewContainerRef, },
301
399
  ]; };
@@ -306,8 +404,10 @@ __decorate$2([
306
404
  ej2AngularBase.Template(),
307
405
  __metadata$2("design:type", Object)
308
406
  ], NavigationLineDirective.prototype, "tooltipSettings_template", void 0);
309
-
310
- var NavigationLinesDirective = (function (_super) {
407
+ /**
408
+ * NavigationLine Array Directive
409
+ */
410
+ var NavigationLinesDirective = /** @class */ (function (_super) {
311
411
  __extends(NavigationLinesDirective, _super);
312
412
  function NavigationLinesDirective() {
313
413
  return _super.call(this, 'navigationlinesettings') || this;
@@ -322,14 +422,25 @@ NavigationLinesDirective.decorators = [
322
422
  },
323
423
  },] },
324
424
  ];
325
-
425
+ /**
426
+ * @nocollapse
427
+ */
326
428
  NavigationLinesDirective.ctorParameters = function () { return []; };
327
- var input$5 = ['animationDuration', 'bingMapType', 'bubbleSettings', 'dataLabelSettings', 'dataSource', 'geometryType', 'highlightSettings', 'initialShapeSelection', 'key', 'layerType', 'markerClusterSettings', 'markerSettings', 'navigationLineSettings', 'polygonSettings', 'query', 'selectionSettings', 'shapeData', 'shapeDataPath', 'shapePropertyPath', 'shapeSettings', 'staticMapType', 'toggleLegendSettings', 'tooltipSettings', 'type', 'urlTemplate', 'visible'];
429
+ 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'];
328
430
  var outputs$5 = [];
329
-
330
- var LayerDirective = (function (_super) {
431
+ /**
432
+ * Represents the directive to define the layer of the maps.
433
+ * ```html
434
+ * <e-layers>
435
+ * <e-layer></e-layer>
436
+ * </e-layers>
437
+ * ```
438
+ */
439
+ var LayerDirective = /** @class */ (function (_super) {
331
440
  __extends(LayerDirective, _super);
332
-
441
+ /**
442
+ * @param {?} viewContainerRef
443
+ */
333
444
  function LayerDirective(viewContainerRef) {
334
445
  var _this = _super.call(this) || this;
335
446
  _this.viewContainerRef = viewContainerRef;
@@ -354,12 +465,16 @@ LayerDirective.decorators = [
354
465
  }
355
466
  },] },
356
467
  ];
357
-
468
+ /**
469
+ * @nocollapse
470
+ */
358
471
  LayerDirective.ctorParameters = function () { return [
359
472
  { type: core.ViewContainerRef, },
360
473
  ]; };
361
-
362
- var LayersDirective = (function (_super) {
474
+ /**
475
+ * Layer Array Directive
476
+ */
477
+ var LayersDirective = /** @class */ (function (_super) {
363
478
  __extends(LayersDirective, _super);
364
479
  function LayersDirective() {
365
480
  return _super.call(this, 'layers') || this;
@@ -374,7 +489,9 @@ LayersDirective.decorators = [
374
489
  },
375
490
  },] },
376
491
  ];
377
-
492
+ /**
493
+ * @nocollapse
494
+ */
378
495
  LayersDirective.ctorParameters = function () { return []; };
379
496
  var __decorate$3 = (this && this.__decorate) || function (decorators, target, key, desc) {
380
497
  var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
@@ -392,10 +509,19 @@ var __metadata$3 = (this && this.__metadata) || function (k, v) {
392
509
  };
393
510
  var input$6 = ['content', 'horizontalAlignment', 'verticalAlignment', 'x', 'y', 'zIndex'];
394
511
  var outputs$6 = [];
395
-
396
- var AnnotationDirective = (function (_super) {
512
+ /**
513
+ * Represents the directive to define the annotations in the maps.
514
+ * ```html
515
+ * <e-maps-annotations>
516
+ * <e-maps-annotation></e-maps-annotation>
517
+ * </e-maps-annotations>
518
+ * ```
519
+ */
520
+ var AnnotationDirective = /** @class */ (function (_super) {
397
521
  __extends(AnnotationDirective, _super);
398
-
522
+ /**
523
+ * @param {?} viewContainerRef
524
+ */
399
525
  function AnnotationDirective(viewContainerRef) {
400
526
  var _this = _super.call(this) || this;
401
527
  _this.viewContainerRef = viewContainerRef;
@@ -414,7 +540,9 @@ AnnotationDirective.decorators = [
414
540
  queries: {}
415
541
  },] },
416
542
  ];
417
-
543
+ /**
544
+ * @nocollapse
545
+ */
418
546
  AnnotationDirective.ctorParameters = function () { return [
419
547
  { type: core.ViewContainerRef, },
420
548
  ]; };
@@ -425,8 +553,10 @@ __decorate$3([
425
553
  ej2AngularBase.Template(),
426
554
  __metadata$3("design:type", Object)
427
555
  ], AnnotationDirective.prototype, "content", void 0);
428
-
429
- var AnnotationsDirective = (function (_super) {
556
+ /**
557
+ * Annotation Array Directive
558
+ */
559
+ var AnnotationsDirective = /** @class */ (function (_super) {
430
560
  __extends(AnnotationsDirective, _super);
431
561
  function AnnotationsDirective() {
432
562
  return _super.call(this, 'annotations') || this;
@@ -441,7 +571,9 @@ AnnotationsDirective.decorators = [
441
571
  },
442
572
  },] },
443
573
  ];
444
-
574
+ /**
575
+ * @nocollapse
576
+ */
445
577
  AnnotationsDirective.ctorParameters = function () { return []; };
446
578
  var __decorate$4 = (this && this.__decorate) || function (decorators, target, key, desc) {
447
579
  var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
@@ -460,10 +592,21 @@ var __metadata$4 = (this && this.__metadata) || function (k, v) {
460
592
  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'];
461
593
  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', 'onclick', 'pan', 'panComplete', 'resize', 'rightClick', 'shapeHighlight', 'shapeRendering', 'shapeSelected', 'tooltipRender', 'tooltipRenderComplete', 'zoom', 'zoomComplete', 'dataSourceChange'];
462
594
  var twoWays = ['dataSource'];
463
-
464
- exports.MapsComponent = (function (_super) {
595
+ /**
596
+ * Represents the Angular Maps component.
597
+ * 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.
598
+ * ```html
599
+ * <ej-maps></ej-maps>
600
+ * ```
601
+ */
602
+ exports.MapsComponent = /** @class */ (function (_super) {
465
603
  __extends(MapsComponent, _super);
466
-
604
+ /**
605
+ * @param {?} ngEle
606
+ * @param {?} srenderer
607
+ * @param {?} viewContainerRef
608
+ * @param {?} injector
609
+ */
467
610
  function MapsComponent(ngEle, srenderer, viewContainerRef, injector) {
468
611
  var _this = _super.call(this) || this;
469
612
  _this.ngEle = ngEle;
@@ -577,23 +720,31 @@ exports.MapsComponent = (function (_super) {
577
720
  _this.context = new ej2AngularBase.ComponentBase();
578
721
  return _this;
579
722
  }
580
-
723
+ /**
724
+ * @return {?}
725
+ */
581
726
  MapsComponent.prototype.ngOnInit = function () {
582
727
  this.context.ngOnInit(this);
583
728
  };
584
-
729
+ /**
730
+ * @return {?}
731
+ */
585
732
  MapsComponent.prototype.ngAfterViewInit = function () {
586
733
  this.context.ngAfterViewInit(this);
587
734
  };
588
-
735
+ /**
736
+ * @return {?}
737
+ */
589
738
  MapsComponent.prototype.ngOnDestroy = function () {
590
739
  this.context.ngOnDestroy(this);
591
740
  };
592
-
741
+ /**
742
+ * @return {?}
743
+ */
593
744
  MapsComponent.prototype.ngAfterContentChecked = function () {
594
745
  this.tagObjects[0].instance = this.childLayers;
595
746
  if (this.childAnnotations) {
596
- this.tagObjects[1].instance = (this.childAnnotations);
747
+ this.tagObjects[1].instance = /** @type {?} */ (this.childAnnotations);
597
748
  }
598
749
  this.context.ngAfterContentChecked(this);
599
750
  };
@@ -612,7 +763,9 @@ exports.MapsComponent.decorators = [
612
763
  }
613
764
  },] },
614
765
  ];
615
-
766
+ /**
767
+ * @nocollapse
768
+ */
616
769
  exports.MapsComponent.ctorParameters = function () { return [
617
770
  { type: core.ElementRef, },
618
771
  { type: core.Renderer2, },
@@ -626,8 +779,10 @@ exports.MapsComponent = __decorate$4([
626
779
  core.ViewContainerRef,
627
780
  core.Injector])
628
781
  ], exports.MapsComponent);
629
-
630
- var MapsModule = (function () {
782
+ /**
783
+ * NgModule definition for the Maps component.
784
+ */
785
+ var MapsModule = /** @class */ (function () {
631
786
  function MapsModule() {
632
787
  }
633
788
  return MapsModule;
@@ -671,7 +826,9 @@ MapsModule.decorators = [
671
826
  ]
672
827
  },] },
673
828
  ];
674
-
829
+ /**
830
+ * @nocollapse
831
+ */
675
832
  MapsModule.ctorParameters = function () { return []; };
676
833
  var BubbleService = { provide: 'MapsBubble', useValue: ej2Maps.Bubble };
677
834
  var LegendService = { provide: 'MapsLegend', useValue: ej2Maps.Legend };
@@ -687,8 +844,10 @@ var PrintService = { provide: 'MapsPrint', useValue: ej2Maps.Print };
687
844
  var PdfExportService = { provide: 'MapsPdfExport', useValue: ej2Maps.PdfExport };
688
845
  var ImageExportService = { provide: 'MapsImageExport', useValue: ej2Maps.ImageExport };
689
846
  var PolygonService = { provide: 'MapsPolygon', useValue: ej2Maps.Polygon };
690
-
691
- var MapsAllModule = (function () {
847
+ /**
848
+ * NgModule definition for the Maps component with providers.
849
+ */
850
+ var MapsAllModule = /** @class */ (function () {
692
851
  function MapsAllModule() {
693
852
  }
694
853
  return MapsAllModule;
@@ -717,7 +876,9 @@ MapsAllModule.decorators = [
717
876
  ]
718
877
  },] },
719
878
  ];
720
-
879
+ /**
880
+ * @nocollapse
881
+ */
721
882
  MapsAllModule.ctorParameters = function () { return []; };
722
883
 
723
884
  exports.InitialShapeSelectionDirective = InitialShapeSelectionDirective;