igniteui-webcomponents-maps 6.0.0-beta.0 → 6.0.1-beta.1
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.
- package/bundles/igniteui-webcomponents-maps.umd.js +438 -438
- package/bundles/igniteui-webcomponents-maps.umd.min.js +1 -1
- package/esm2015/lib/GeographicHighDensityScatterSeriesView_combined.js +4 -4
- package/esm2015/lib/GeographicMapSeriesHost_combined.js +3 -3
- package/esm2015/lib/GeographicProportionalSymbolSeriesView_combined.js +4 -4
- package/esm2015/lib/GeographicShapeSeriesBase_combined.js +2 -2
- package/esm2015/lib/GeographicSymbolSeriesView_combined.js +4 -4
- package/esm2015/lib/TileSeries_combined.js +1 -1
- package/esm2015/lib/XamGeographicMap_combined.js +376 -376
- package/esm2015/lib/igc-geographic-map-component.js +50 -50
- package/esm5/lib/GeographicHighDensityScatterSeriesView_combined.js +4 -4
- package/esm5/lib/GeographicMapSeriesHost_combined.js +3 -3
- package/esm5/lib/GeographicProportionalSymbolSeriesView_combined.js +4 -4
- package/esm5/lib/GeographicShapeSeriesBase_combined.js +2 -2
- package/esm5/lib/GeographicSymbolSeriesView_combined.js +4 -4
- package/esm5/lib/TileSeries_combined.js +1 -1
- package/esm5/lib/XamGeographicMap_combined.js +370 -370
- package/esm5/lib/igc-geographic-map-component.js +50 -50
- package/fesm2015/igniteui-webcomponents-maps.js +444 -444
- package/fesm5/igniteui-webcomponents-maps.js +438 -438
- package/lib/XamGeographicMap_combined.d.ts +88 -88
- package/package.json +12 -5
|
@@ -388,11 +388,11 @@ var IgcGeographicMapComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
388
388
|
* Gets or sets zoomability of the current control
|
|
389
389
|
*/
|
|
390
390
|
get: function () {
|
|
391
|
-
return this.i.
|
|
391
|
+
return this.i.x1;
|
|
392
392
|
},
|
|
393
393
|
set: function (v) {
|
|
394
|
-
this.i.
|
|
395
|
-
this._a("zoomable", this.i.
|
|
394
|
+
this.i.x1 = ensureBool(v);
|
|
395
|
+
this._a("zoomable", this.i.x1);
|
|
396
396
|
},
|
|
397
397
|
enumerable: false,
|
|
398
398
|
configurable: true
|
|
@@ -402,11 +402,11 @@ var IgcGeographicMapComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
402
402
|
* Gets or sets the behavior to use during resize.
|
|
403
403
|
*/
|
|
404
404
|
get: function () {
|
|
405
|
-
return this.i.
|
|
405
|
+
return this.i.xu;
|
|
406
406
|
},
|
|
407
407
|
set: function (v) {
|
|
408
|
-
this.i.
|
|
409
|
-
this._a("resizeBehavior", enumToString(MapResizeBehavior_$type, this.i.
|
|
408
|
+
this.i.xu = ensureEnum(MapResizeBehavior_$type, v);
|
|
409
|
+
this._a("resizeBehavior", enumToString(MapResizeBehavior_$type, this.i.xu));
|
|
410
410
|
},
|
|
411
411
|
enumerable: false,
|
|
412
412
|
configurable: true
|
|
@@ -416,11 +416,11 @@ var IgcGeographicMapComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
416
416
|
* Gets or sets if the map should horizontally wrap.
|
|
417
417
|
*/
|
|
418
418
|
get: function () {
|
|
419
|
-
return this.i.
|
|
419
|
+
return this.i.xy;
|
|
420
420
|
},
|
|
421
421
|
set: function (v) {
|
|
422
|
-
this.i.
|
|
423
|
-
this._a("isHorizontalWrappingEnabled", this.i.
|
|
422
|
+
this.i.xy = ensureBool(v);
|
|
423
|
+
this._a("isHorizontalWrappingEnabled", this.i.xy);
|
|
424
424
|
},
|
|
425
425
|
enumerable: false,
|
|
426
426
|
configurable: true
|
|
@@ -430,11 +430,11 @@ var IgcGeographicMapComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
430
430
|
* Gets or sets if the map should horizontally wrap.
|
|
431
431
|
*/
|
|
432
432
|
get: function () {
|
|
433
|
-
return this.i.
|
|
433
|
+
return this.i.xq;
|
|
434
434
|
},
|
|
435
435
|
set: function (v) {
|
|
436
|
-
this.i.
|
|
437
|
-
this._a("backgroundTilingMode", enumToString(MapBackgroundTilingMode_$type, this.i.
|
|
436
|
+
this.i.xq = ensureEnum(MapBackgroundTilingMode_$type, v);
|
|
437
|
+
this._a("backgroundTilingMode", enumToString(MapBackgroundTilingMode_$type, this.i.xq));
|
|
438
438
|
},
|
|
439
439
|
enumerable: false,
|
|
440
440
|
configurable: true
|
|
@@ -444,11 +444,11 @@ var IgcGeographicMapComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
444
444
|
* Gets or sets whether to use the uncoerced world rect to constrain the zoom bounds.
|
|
445
445
|
*/
|
|
446
446
|
get: function () {
|
|
447
|
-
return this.i.
|
|
447
|
+
return this.i.x0;
|
|
448
448
|
},
|
|
449
449
|
set: function (v) {
|
|
450
|
-
this.i.
|
|
451
|
-
this._a("useWorldRectForZoomBounds", this.i.
|
|
450
|
+
this.i.x0 = ensureBool(v);
|
|
451
|
+
this._a("useWorldRectForZoomBounds", this.i.x0);
|
|
452
452
|
},
|
|
453
453
|
enumerable: false,
|
|
454
454
|
configurable: true
|
|
@@ -458,11 +458,11 @@ var IgcGeographicMapComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
458
458
|
* Gets or sets whether skip resetting the zoom when the world rect changes.
|
|
459
459
|
*/
|
|
460
460
|
get: function () {
|
|
461
|
-
return this.i.
|
|
461
|
+
return this.i.xz;
|
|
462
462
|
},
|
|
463
463
|
set: function (v) {
|
|
464
|
-
this.i.
|
|
465
|
-
this._a("suppressZoomResetOnWorldRectChange", this.i.
|
|
464
|
+
this.i.xz = ensureBool(v);
|
|
465
|
+
this._a("suppressZoomResetOnWorldRectChange", this.i.xz);
|
|
466
466
|
},
|
|
467
467
|
enumerable: false,
|
|
468
468
|
configurable: true
|
|
@@ -472,11 +472,11 @@ var IgcGeographicMapComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
472
472
|
* Gets or sets the world bounding rectangle.
|
|
473
473
|
*/
|
|
474
474
|
get: function () {
|
|
475
|
-
return fromRect(this.i.
|
|
475
|
+
return fromRect(this.i.zw);
|
|
476
476
|
},
|
|
477
477
|
set: function (v) {
|
|
478
|
-
this.i.
|
|
479
|
-
this._a("worldRect", rectToString(this.i.
|
|
478
|
+
this.i.zw = toRect(v);
|
|
479
|
+
this._a("worldRect", rectToString(this.i.zw));
|
|
480
480
|
},
|
|
481
481
|
enumerable: false,
|
|
482
482
|
configurable: true
|
|
@@ -486,11 +486,11 @@ var IgcGeographicMapComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
486
486
|
* Gets the actual value of the WorldRect.
|
|
487
487
|
*/
|
|
488
488
|
get: function () {
|
|
489
|
-
return fromRect(this.i.
|
|
489
|
+
return fromRect(this.i.zk);
|
|
490
490
|
},
|
|
491
491
|
set: function (v) {
|
|
492
|
-
this.i.
|
|
493
|
-
this._a("actualWorldRect", rectToString(this.i.
|
|
492
|
+
this.i.zk = toRect(v);
|
|
493
|
+
this._a("actualWorldRect", rectToString(this.i.zk));
|
|
494
494
|
},
|
|
495
495
|
enumerable: false,
|
|
496
496
|
configurable: true
|
|
@@ -501,7 +501,7 @@ var IgcGeographicMapComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
501
501
|
* Under normal circumstances, this property should not be set in application code. By default, it will be set to a numeric axis with a spherical mercator scaler.
|
|
502
502
|
*/
|
|
503
503
|
get: function () {
|
|
504
|
-
var r = this.i.
|
|
504
|
+
var r = this.i.xj;
|
|
505
505
|
if (r == null) {
|
|
506
506
|
return null;
|
|
507
507
|
}
|
|
@@ -517,7 +517,7 @@ var IgcGeographicMapComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
517
517
|
set: function (v) {
|
|
518
518
|
if (v != null && this._stylingContainer && v._styling)
|
|
519
519
|
v._styling(this._stylingContainer, this, this);
|
|
520
|
-
v == null ? this.i.
|
|
520
|
+
v == null ? this.i.xj = null : this.i.xj = v.i;
|
|
521
521
|
},
|
|
522
522
|
enumerable: false,
|
|
523
523
|
configurable: true
|
|
@@ -528,7 +528,7 @@ var IgcGeographicMapComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
528
528
|
* Under normal circumstances, this property should not be set in application code. By default, it will be set to a numeric axis with a spherical mercator scaler.
|
|
529
529
|
*/
|
|
530
530
|
get: function () {
|
|
531
|
-
var r = this.i.
|
|
531
|
+
var r = this.i.xl;
|
|
532
532
|
if (r == null) {
|
|
533
533
|
return null;
|
|
534
534
|
}
|
|
@@ -544,7 +544,7 @@ var IgcGeographicMapComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
544
544
|
set: function (v) {
|
|
545
545
|
if (v != null && this._stylingContainer && v._styling)
|
|
546
546
|
v._styling(this._stylingContainer, this, this);
|
|
547
|
-
v == null ? this.i.
|
|
547
|
+
v == null ? this.i.xl = null : this.i.xl = v.i;
|
|
548
548
|
},
|
|
549
549
|
enumerable: false,
|
|
550
550
|
configurable: true
|
|
@@ -554,7 +554,7 @@ var IgcGeographicMapComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
554
554
|
* Indicates if this SeriesViewer is a map.
|
|
555
555
|
*/
|
|
556
556
|
get: function () {
|
|
557
|
-
return this.i.
|
|
557
|
+
return this.i.fh;
|
|
558
558
|
},
|
|
559
559
|
enumerable: false,
|
|
560
560
|
configurable: true
|
|
@@ -565,11 +565,11 @@ var IgcGeographicMapComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
565
565
|
* This property is effectively a shortcut to the Width/Height of the WindowRect property.
|
|
566
566
|
*/
|
|
567
567
|
get: function () {
|
|
568
|
-
return this.i.
|
|
568
|
+
return this.i.x6;
|
|
569
569
|
},
|
|
570
570
|
set: function (v) {
|
|
571
|
-
this.i.
|
|
572
|
-
this._a("windowScale", this.i.
|
|
571
|
+
this.i.x6 = +v;
|
|
572
|
+
this._a("windowScale", this.i.x6);
|
|
573
573
|
},
|
|
574
574
|
enumerable: false,
|
|
575
575
|
configurable: true
|
|
@@ -580,11 +580,11 @@ var IgcGeographicMapComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
580
580
|
* This property is effectively a shortcut to the Width/Height of the ActualWindowRect property.
|
|
581
581
|
*/
|
|
582
582
|
get: function () {
|
|
583
|
-
return this.i.
|
|
583
|
+
return this.i.x5;
|
|
584
584
|
},
|
|
585
585
|
set: function (v) {
|
|
586
|
-
this.i.
|
|
587
|
-
this._a("actualWindowScale", this.i.
|
|
586
|
+
this.i.x5 = +v;
|
|
587
|
+
this._a("actualWindowScale", this.i.x5);
|
|
588
588
|
},
|
|
589
589
|
enumerable: false,
|
|
590
590
|
configurable: true
|
|
@@ -594,7 +594,7 @@ var IgcGeographicMapComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
594
594
|
* Gets whether or not the control is ready for zooming
|
|
595
595
|
*/
|
|
596
596
|
get: function () {
|
|
597
|
-
return this.i.
|
|
597
|
+
return this.i.x2;
|
|
598
598
|
},
|
|
599
599
|
enumerable: false,
|
|
600
600
|
configurable: true
|
|
@@ -625,7 +625,7 @@ var IgcGeographicMapComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
625
625
|
|
|
626
626
|
*/
|
|
627
627
|
IgcGeographicMapComponent.prototype.getCurrentActualWorldRect = function () {
|
|
628
|
-
var iv = this.i.
|
|
628
|
+
var iv = this.i.zo();
|
|
629
629
|
return fromRect(iv);
|
|
630
630
|
};
|
|
631
631
|
/**
|
|
@@ -642,14 +642,14 @@ var IgcGeographicMapComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
642
642
|
|
|
643
643
|
*/
|
|
644
644
|
IgcGeographicMapComponent.prototype.updateZoomWindow = function (zoomWindow) {
|
|
645
|
-
this.i.
|
|
645
|
+
this.i.y0(toRect(zoomWindow));
|
|
646
646
|
};
|
|
647
647
|
/**
|
|
648
648
|
* Updates world rect in geographic coordinates
|
|
649
649
|
|
|
650
650
|
*/
|
|
651
651
|
IgcGeographicMapComponent.prototype.updateWorldRect = function (worldRect) {
|
|
652
|
-
this.i.
|
|
652
|
+
this.i.yz(toRect(worldRect));
|
|
653
653
|
};
|
|
654
654
|
/**
|
|
655
655
|
* Given the current plot area of the control and a geographic region, get the WindowRect that would encompass that geographic region.
|
|
@@ -661,7 +661,7 @@ var IgcGeographicMapComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
661
661
|
return fromRect(iv);
|
|
662
662
|
};
|
|
663
663
|
IgcGeographicMapComponent.prototype.convertGeographicToZoom = function (geographic, extraPixelPadding) {
|
|
664
|
-
var iv = this.i.
|
|
664
|
+
var iv = this.i.zl(toRect(geographic), extraPixelPadding);
|
|
665
665
|
return fromRect(iv);
|
|
666
666
|
};
|
|
667
667
|
IgcGeographicMapComponent.prototype.getZoomFromGeographicPoints = function (northWest, southEast) {
|
|
@@ -674,7 +674,7 @@ var IgcGeographicMapComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
674
674
|
* @param windowRect * The zoom area.
|
|
675
675
|
*/
|
|
676
676
|
IgcGeographicMapComponent.prototype.getGeographicFromZoom = function (windowRect) {
|
|
677
|
-
var iv = this.i.
|
|
677
|
+
var iv = this.i.zq(toRect(windowRect));
|
|
678
678
|
return fromRect(iv);
|
|
679
679
|
};
|
|
680
680
|
/**
|
|
@@ -683,7 +683,7 @@ var IgcGeographicMapComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
683
683
|
* @param pixelCoordinate * A pixel-based coordinate
|
|
684
684
|
*/
|
|
685
685
|
IgcGeographicMapComponent.prototype.getGeographicPoint = function (pixelCoordinate) {
|
|
686
|
-
var iv = this.i.
|
|
686
|
+
var iv = this.i.zc(toPoint(pixelCoordinate));
|
|
687
687
|
return fromPoint(iv);
|
|
688
688
|
};
|
|
689
689
|
/**
|
|
@@ -692,7 +692,7 @@ var IgcGeographicMapComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
692
692
|
* @param geographicCoordinate * A geographic coordinate
|
|
693
693
|
*/
|
|
694
694
|
IgcGeographicMapComponent.prototype.getPixelPoint = function (geographicCoordinate) {
|
|
695
|
-
var iv = this.i.
|
|
695
|
+
var iv = this.i.zd(toPoint(geographicCoordinate));
|
|
696
696
|
return fromPoint(iv);
|
|
697
697
|
};
|
|
698
698
|
/**
|
|
@@ -701,7 +701,7 @@ var IgcGeographicMapComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
701
701
|
* @param geographicCoordinate * A geographic coordinate
|
|
702
702
|
*/
|
|
703
703
|
IgcGeographicMapComponent.prototype.getWindowPoint = function (geographicCoordinate) {
|
|
704
|
-
var iv = this.i.
|
|
704
|
+
var iv = this.i.ze(toPoint(geographicCoordinate));
|
|
705
705
|
return fromPoint(iv);
|
|
706
706
|
};
|
|
707
707
|
/**
|
|
@@ -709,21 +709,21 @@ var IgcGeographicMapComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
709
709
|
|
|
710
710
|
*/
|
|
711
711
|
IgcGeographicMapComponent.prototype.clearTileCache = function () {
|
|
712
|
-
this.i.
|
|
712
|
+
this.i.yn();
|
|
713
713
|
};
|
|
714
714
|
/**
|
|
715
715
|
* Notifies the chart that the CSS styles in effect have been updated.
|
|
716
716
|
|
|
717
717
|
*/
|
|
718
718
|
IgcGeographicMapComponent.prototype.styleUpdated = function () {
|
|
719
|
-
this.i.
|
|
719
|
+
this.i.yv();
|
|
720
720
|
};
|
|
721
721
|
/**
|
|
722
722
|
* Gets actual window scale for horizontal dimension of the control
|
|
723
723
|
|
|
724
724
|
*/
|
|
725
725
|
IgcGeographicMapComponent.prototype.getActualWindowScaleHorizontal = function () {
|
|
726
|
-
var iv = this.i.
|
|
726
|
+
var iv = this.i.hz();
|
|
727
727
|
return (iv);
|
|
728
728
|
};
|
|
729
729
|
/**
|
|
@@ -731,7 +731,7 @@ var IgcGeographicMapComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
731
731
|
|
|
732
732
|
*/
|
|
733
733
|
IgcGeographicMapComponent.prototype.getActualWindowScaleVertical = function () {
|
|
734
|
-
var iv = this.i.
|
|
734
|
+
var iv = this.i.h0();
|
|
735
735
|
return (iv);
|
|
736
736
|
};
|
|
737
737
|
/**
|
|
@@ -746,7 +746,7 @@ var IgcGeographicMapComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
746
746
|
|
|
747
747
|
*/
|
|
748
748
|
IgcGeographicMapComponent.prototype.exportVisualData = function () {
|
|
749
|
-
var iv = this.i.
|
|
749
|
+
var iv = this.i.x9();
|
|
750
750
|
return (iv);
|
|
751
751
|
};
|
|
752
752
|
/**
|
|
@@ -755,7 +755,7 @@ var IgcGeographicMapComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
755
755
|
* @param geographic * The geographic region to zoom to.
|
|
756
756
|
*/
|
|
757
757
|
IgcGeographicMapComponent.prototype.zoomToGeographic = function (geographic) {
|
|
758
|
-
this.i.
|
|
758
|
+
this.i.y2(toRect(geographic));
|
|
759
759
|
};
|
|
760
760
|
Object.defineProperty(IgcGeographicMapComponent.prototype, "imageTilesReady", {
|
|
761
761
|
/**
|