igniteui-webcomponents-maps 3.2.4 → 3.5.0
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 +361 -66
- package/bundles/igniteui-webcomponents-maps.umd.min.js +1 -1
- package/esm2015/lib/igc-custom-map-imagery.js +1 -0
- package/esm2015/lib/igc-geographic-contour-line-series-component.js +36 -18
- package/esm2015/lib/igc-geographic-high-density-scatter-series-component.js +15 -0
- package/esm2015/lib/igc-geographic-map-component.js +15 -12
- package/esm2015/lib/igc-geographic-map-imagery.js +29 -2
- package/esm2015/lib/igc-geographic-map-series-host-component.js +14 -0
- package/esm2015/lib/igc-geographic-marker-series-base-component.js +14 -0
- package/esm2015/lib/igc-geographic-marker-series-component.js +14 -0
- package/esm2015/lib/igc-geographic-polyline-series-component.js +15 -0
- package/esm2015/lib/igc-geographic-proportional-symbol-series-base-component.js +14 -0
- package/esm2015/lib/igc-geographic-proportional-symbol-series-component.js +30 -12
- package/esm2015/lib/igc-geographic-scatter-area-series-component.js +29 -12
- package/esm2015/lib/igc-geographic-shape-series-base-base-component.js +14 -0
- package/esm2015/lib/igc-geographic-shape-series-base-component.js +27 -5
- package/esm2015/lib/igc-geographic-shape-series-component.js +15 -0
- package/esm2015/lib/igc-geographic-symbol-series-base-component.js +14 -0
- package/esm2015/lib/igc-geographic-symbol-series-component.js +16 -0
- package/esm2015/lib/igc-geographic-tile-series-component.js +18 -2
- package/esm2015/lib/igc-geographic-xy-triangulating-series-base-component.js +14 -0
- package/esm2015/lib/igc-tile-series-component.js +17 -2
- package/esm5/lib/igc-custom-map-imagery.js +1 -0
- package/esm5/lib/igc-geographic-contour-line-series-component.js +36 -18
- package/esm5/lib/igc-geographic-high-density-scatter-series-component.js +15 -0
- package/esm5/lib/igc-geographic-map-component.js +15 -12
- package/esm5/lib/igc-geographic-map-imagery.js +30 -3
- package/esm5/lib/igc-geographic-map-series-host-component.js +14 -0
- package/esm5/lib/igc-geographic-marker-series-base-component.js +14 -0
- package/esm5/lib/igc-geographic-marker-series-component.js +14 -0
- package/esm5/lib/igc-geographic-polyline-series-component.js +15 -0
- package/esm5/lib/igc-geographic-proportional-symbol-series-base-component.js +14 -0
- package/esm5/lib/igc-geographic-proportional-symbol-series-component.js +30 -12
- package/esm5/lib/igc-geographic-scatter-area-series-component.js +29 -12
- package/esm5/lib/igc-geographic-shape-series-base-base-component.js +14 -0
- package/esm5/lib/igc-geographic-shape-series-base-component.js +27 -5
- package/esm5/lib/igc-geographic-shape-series-component.js +15 -0
- package/esm5/lib/igc-geographic-symbol-series-base-component.js +14 -0
- package/esm5/lib/igc-geographic-symbol-series-component.js +16 -0
- package/esm5/lib/igc-geographic-tile-series-component.js +18 -2
- package/esm5/lib/igc-geographic-xy-triangulating-series-base-component.js +14 -0
- package/esm5/lib/igc-tile-series-component.js +17 -2
- package/fesm2015/igniteui-webcomponents-maps.js +360 -65
- package/fesm5/igniteui-webcomponents-maps.js +361 -66
- package/lib/igc-geographic-contour-line-series-component.d.ts +1 -0
- package/lib/igc-geographic-high-density-scatter-series-component.d.ts +1 -0
- package/lib/igc-geographic-map-imagery.d.ts +4 -1
- package/lib/igc-geographic-map-series-host-component.d.ts +1 -0
- package/lib/igc-geographic-marker-series-base-component.d.ts +1 -0
- package/lib/igc-geographic-marker-series-component.d.ts +1 -0
- package/lib/igc-geographic-polyline-series-component.d.ts +1 -0
- package/lib/igc-geographic-proportional-symbol-series-base-component.d.ts +1 -0
- package/lib/igc-geographic-proportional-symbol-series-component.d.ts +1 -0
- package/lib/igc-geographic-scatter-area-series-component.d.ts +1 -0
- package/lib/igc-geographic-shape-series-base-base-component.d.ts +1 -0
- package/lib/igc-geographic-shape-series-base-component.d.ts +1 -0
- package/lib/igc-geographic-shape-series-component.d.ts +1 -0
- package/lib/igc-geographic-symbol-series-base-component.d.ts +1 -0
- package/lib/igc-geographic-symbol-series-component.d.ts +1 -0
- package/lib/igc-geographic-tile-series-component.d.ts +1 -0
- package/lib/igc-geographic-xy-triangulating-series-base-component.d.ts +1 -0
- package/lib/igc-tile-series-component.d.ts +1 -0
- package/package.json +3 -3
|
@@ -2947,17 +2947,18 @@ var IgcGeographicMapComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2947
2947
|
* 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.
|
|
2948
2948
|
*/
|
|
2949
2949
|
get: function () {
|
|
2950
|
-
|
|
2950
|
+
var r = this.i.tw;
|
|
2951
|
+
if (r == null) {
|
|
2951
2952
|
return null;
|
|
2952
2953
|
}
|
|
2953
|
-
if (!
|
|
2954
|
-
var e = IgcNumericXAxisComponent._createFromInternal(
|
|
2954
|
+
if (!r.externalObject) {
|
|
2955
|
+
var e = IgcNumericXAxisComponent._createFromInternal(r);
|
|
2955
2956
|
if (e) {
|
|
2956
|
-
e._implementation =
|
|
2957
|
+
e._implementation = r;
|
|
2957
2958
|
}
|
|
2958
|
-
|
|
2959
|
+
r.externalObject = e;
|
|
2959
2960
|
}
|
|
2960
|
-
return
|
|
2961
|
+
return r.externalObject;
|
|
2961
2962
|
},
|
|
2962
2963
|
set: function (v) {
|
|
2963
2964
|
if (v != null && this._stylingContainer && v._styling)
|
|
@@ -2973,17 +2974,18 @@ var IgcGeographicMapComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2973
2974
|
* 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.
|
|
2974
2975
|
*/
|
|
2975
2976
|
get: function () {
|
|
2976
|
-
|
|
2977
|
+
var r = this.i.ty;
|
|
2978
|
+
if (r == null) {
|
|
2977
2979
|
return null;
|
|
2978
2980
|
}
|
|
2979
|
-
if (!
|
|
2980
|
-
var e = IgcNumericYAxisComponent._createFromInternal(
|
|
2981
|
+
if (!r.externalObject) {
|
|
2982
|
+
var e = IgcNumericYAxisComponent._createFromInternal(r);
|
|
2981
2983
|
if (e) {
|
|
2982
|
-
e._implementation =
|
|
2984
|
+
e._implementation = r;
|
|
2983
2985
|
}
|
|
2984
|
-
|
|
2986
|
+
r.externalObject = e;
|
|
2985
2987
|
}
|
|
2986
|
-
return
|
|
2988
|
+
return r.externalObject;
|
|
2987
2989
|
},
|
|
2988
2990
|
set: function (v) {
|
|
2989
2991
|
if (v != null && this._stylingContainer && v._styling)
|
|
@@ -3227,6 +3229,7 @@ var IgcGeographicMapComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3227
3229
|
}
|
|
3228
3230
|
};
|
|
3229
3231
|
this.i.imageTilesReady = delegateCombine(this.i.imageTilesReady, this._imageTilesReady_wrapped);
|
|
3232
|
+
;
|
|
3230
3233
|
},
|
|
3231
3234
|
enumerable: true,
|
|
3232
3235
|
configurable: true
|
|
@@ -3364,10 +3367,26 @@ var IgcGeographicMapImagery = /** @class */ /*@__PURE__*/ (function () {
|
|
|
3364
3367
|
*/
|
|
3365
3368
|
get: function () {
|
|
3366
3369
|
return this._implementation;
|
|
3367
|
-
}
|
|
3370
|
+
} /**
|
|
3371
|
+
* @hidden
|
|
3372
|
+
*/,
|
|
3368
3373
|
enumerable: true,
|
|
3369
3374
|
configurable: true
|
|
3370
3375
|
});
|
|
3376
|
+
IgcGeographicMapImagery._createFromInternal = function (internal) {
|
|
3377
|
+
if (!internal) {
|
|
3378
|
+
return null;
|
|
3379
|
+
}
|
|
3380
|
+
if (!internal.$type) {
|
|
3381
|
+
return null;
|
|
3382
|
+
}
|
|
3383
|
+
var name = internal.$type.name;
|
|
3384
|
+
var externalName = "Igc" + name + "Component";
|
|
3385
|
+
if (!TypeRegistrar.isRegistered(externalName)) {
|
|
3386
|
+
return null;
|
|
3387
|
+
}
|
|
3388
|
+
return TypeRegistrar.create(externalName);
|
|
3389
|
+
};
|
|
3371
3390
|
IgcGeographicMapImagery.prototype.onImplementationCreated = function () {
|
|
3372
3391
|
};
|
|
3373
3392
|
IgcGeographicMapImagery.prototype._provideImplementation = function (i) {
|
|
@@ -3407,10 +3426,11 @@ var IgcGeographicMapImagery = /** @class */ /*@__PURE__*/ (function () {
|
|
|
3407
3426
|
* The IgxGeographicMapComponent which is hosting this GeographicMapImagery control.
|
|
3408
3427
|
*/
|
|
3409
3428
|
get: function () {
|
|
3410
|
-
|
|
3429
|
+
var r = this.i.geographicMap;
|
|
3430
|
+
if (r == null) {
|
|
3411
3431
|
return null;
|
|
3412
3432
|
}
|
|
3413
|
-
return
|
|
3433
|
+
return r.externalObject;
|
|
3414
3434
|
},
|
|
3415
3435
|
set: function (v) {
|
|
3416
3436
|
v == null ? this.i.geographicMap = null : this.i.geographicMap = v.i;
|
|
@@ -3468,6 +3488,11 @@ var IgcGeographicMapImagery = /** @class */ /*@__PURE__*/ (function () {
|
|
|
3468
3488
|
configurable: true
|
|
3469
3489
|
});
|
|
3470
3490
|
IgcGeographicMapImagery.prototype.findByName = function (name) {
|
|
3491
|
+
if (this.findEphemera) {
|
|
3492
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
3493
|
+
return this.findEphemera(name);
|
|
3494
|
+
}
|
|
3495
|
+
}
|
|
3471
3496
|
if (this.geographicMap && this.geographicMap.name && this.geographicMap.name == name) {
|
|
3472
3497
|
return this.geographicMap;
|
|
3473
3498
|
}
|
|
@@ -3506,6 +3531,7 @@ var IgcGeographicMapImagery = /** @class */ /*@__PURE__*/ (function () {
|
|
|
3506
3531
|
}
|
|
3507
3532
|
};
|
|
3508
3533
|
this.i.imageTilesReady = delegateCombine(this.i.imageTilesReady, this._imageTilesReady_wrapped);
|
|
3534
|
+
;
|
|
3509
3535
|
},
|
|
3510
3536
|
enumerable: true,
|
|
3511
3537
|
configurable: true
|
|
@@ -3536,6 +3562,7 @@ var IgcGeographicMapImagery = /** @class */ /*@__PURE__*/ (function () {
|
|
|
3536
3562
|
}
|
|
3537
3563
|
};
|
|
3538
3564
|
this.i.imagesChanged = delegateCombine(this.i.imagesChanged, this._imagesChanged_wrapped);
|
|
3565
|
+
;
|
|
3539
3566
|
},
|
|
3540
3567
|
enumerable: true,
|
|
3541
3568
|
configurable: true
|
|
@@ -3566,6 +3593,7 @@ var IgcGeographicMapImagery = /** @class */ /*@__PURE__*/ (function () {
|
|
|
3566
3593
|
}
|
|
3567
3594
|
};
|
|
3568
3595
|
this.i.cancellingImage = delegateCombine(this.i.cancellingImage, this._cancellingImage_wrapped);
|
|
3596
|
+
;
|
|
3569
3597
|
},
|
|
3570
3598
|
enumerable: true,
|
|
3571
3599
|
configurable: true
|
|
@@ -3596,6 +3624,7 @@ var IgcGeographicMapImagery = /** @class */ /*@__PURE__*/ (function () {
|
|
|
3596
3624
|
}
|
|
3597
3625
|
};
|
|
3598
3626
|
this.i.downloadingImage = delegateCombine(this.i.downloadingImage, this._downloadingImage_wrapped);
|
|
3627
|
+
;
|
|
3599
3628
|
},
|
|
3600
3629
|
enumerable: true,
|
|
3601
3630
|
configurable: true
|
|
@@ -4290,6 +4319,7 @@ var IgcCustomMapImagery = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
4290
4319
|
}
|
|
4291
4320
|
};
|
|
4292
4321
|
this.i.getTileImageUri = delegateCombine(this.i.getTileImageUri, this._getTileImageUri_wrapped);
|
|
4322
|
+
;
|
|
4293
4323
|
},
|
|
4294
4324
|
enumerable: true,
|
|
4295
4325
|
configurable: true
|
|
@@ -4781,11 +4811,25 @@ var IgcGeographicMapSeriesHostComponent = /** @class */ /*@__PURE__*/ (function
|
|
|
4781
4811
|
if (_super.prototype["connectedCallback"]) {
|
|
4782
4812
|
_super.prototype["connectedCallback"].call(this);
|
|
4783
4813
|
}
|
|
4814
|
+
if (this.i.connectedCallback) {
|
|
4815
|
+
this.i.connectedCallback();
|
|
4816
|
+
}
|
|
4784
4817
|
if (!this._attached) {
|
|
4785
4818
|
this._attached = true;
|
|
4786
4819
|
this._flushQueuedAttributes();
|
|
4787
4820
|
}
|
|
4788
4821
|
};
|
|
4822
|
+
IgcGeographicMapSeriesHostComponent.prototype.disconnectedCallback = function () {
|
|
4823
|
+
if (_super.prototype["disconnectedCallback"]) {
|
|
4824
|
+
_super.prototype["disconnectedCallback"].call(this);
|
|
4825
|
+
}
|
|
4826
|
+
if (this.i.disconnectedCallback) {
|
|
4827
|
+
this.i.disconnectedCallback();
|
|
4828
|
+
}
|
|
4829
|
+
if (this._attached) {
|
|
4830
|
+
this._attached = false;
|
|
4831
|
+
}
|
|
4832
|
+
};
|
|
4789
4833
|
Object.defineProperty(IgcGeographicMapSeriesHostComponent, "observedAttributes", {
|
|
4790
4834
|
get: function () {
|
|
4791
4835
|
if (IgcGeographicMapSeriesHostComponent._observedAttributesIgcGeographicMapSeriesHostComponent == null) {
|
|
@@ -4984,11 +5028,25 @@ var IgcGeographicShapeSeriesBaseComponent = /** @class */ /*@__PURE__*/ (functio
|
|
|
4984
5028
|
if (_super.prototype["connectedCallback"]) {
|
|
4985
5029
|
_super.prototype["connectedCallback"].call(this);
|
|
4986
5030
|
}
|
|
5031
|
+
if (this.i.connectedCallback) {
|
|
5032
|
+
this.i.connectedCallback();
|
|
5033
|
+
}
|
|
4987
5034
|
if (!this._attached) {
|
|
4988
5035
|
this._attached = true;
|
|
4989
5036
|
this._flushQueuedAttributes();
|
|
4990
5037
|
}
|
|
4991
5038
|
};
|
|
5039
|
+
IgcGeographicShapeSeriesBaseComponent.prototype.disconnectedCallback = function () {
|
|
5040
|
+
if (_super.prototype["disconnectedCallback"]) {
|
|
5041
|
+
_super.prototype["disconnectedCallback"].call(this);
|
|
5042
|
+
}
|
|
5043
|
+
if (this.i.disconnectedCallback) {
|
|
5044
|
+
this.i.disconnectedCallback();
|
|
5045
|
+
}
|
|
5046
|
+
if (this._attached) {
|
|
5047
|
+
this._attached = false;
|
|
5048
|
+
}
|
|
5049
|
+
};
|
|
4992
5050
|
Object.defineProperty(IgcGeographicShapeSeriesBaseComponent, "observedAttributes", {
|
|
4993
5051
|
get: function () {
|
|
4994
5052
|
if (IgcGeographicShapeSeriesBaseComponent._observedAttributesIgcGeographicShapeSeriesBaseComponent == null) {
|
|
@@ -5157,15 +5215,21 @@ var IgcGeographicShapeSeriesBaseComponent = /** @class */ /*@__PURE__*/ (functio
|
|
|
5157
5215
|
* Set a shapefile datasource to use with the series.
|
|
5158
5216
|
*/
|
|
5159
5217
|
get: function () {
|
|
5160
|
-
|
|
5218
|
+
var r = this.i.qn;
|
|
5219
|
+
if (r == null) {
|
|
5161
5220
|
return null;
|
|
5162
5221
|
}
|
|
5163
|
-
if (!
|
|
5222
|
+
if (!r.externalObject) {
|
|
5164
5223
|
var e = new IgcShapeDataSource();
|
|
5165
|
-
e.
|
|
5166
|
-
|
|
5224
|
+
if (e.i.setNativeElement) {
|
|
5225
|
+
e.i.setNativeElement(r);
|
|
5226
|
+
}
|
|
5227
|
+
else {
|
|
5228
|
+
e._implementation = r;
|
|
5229
|
+
}
|
|
5230
|
+
r.externalObject = e;
|
|
5167
5231
|
}
|
|
5168
|
-
return
|
|
5232
|
+
return r.externalObject;
|
|
5169
5233
|
},
|
|
5170
5234
|
set: function (v) {
|
|
5171
5235
|
v == null ? this.i.qn = null : this.i.qn = v.i;
|
|
@@ -5224,6 +5288,7 @@ var IgcGeographicShapeSeriesBaseComponent = /** @class */ /*@__PURE__*/ (functio
|
|
|
5224
5288
|
}
|
|
5225
5289
|
};
|
|
5226
5290
|
this.i.assigningShapeStyle = delegateCombine(this.i.assigningShapeStyle, this._assigningShapeStyle_wrapped);
|
|
5291
|
+
;
|
|
5227
5292
|
},
|
|
5228
5293
|
enumerable: true,
|
|
5229
5294
|
configurable: true
|
|
@@ -5254,6 +5319,7 @@ var IgcGeographicShapeSeriesBaseComponent = /** @class */ /*@__PURE__*/ (functio
|
|
|
5254
5319
|
}
|
|
5255
5320
|
};
|
|
5256
5321
|
this.i.assigningShapeMarkerStyle = delegateCombine(this.i.assigningShapeMarkerStyle, this._assigningShapeMarkerStyle_wrapped);
|
|
5322
|
+
;
|
|
5257
5323
|
},
|
|
5258
5324
|
enumerable: true,
|
|
5259
5325
|
configurable: true
|
|
@@ -5657,11 +5723,25 @@ var IgcGeographicShapeSeriesComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
5657
5723
|
if (_super.prototype["connectedCallback"]) {
|
|
5658
5724
|
_super.prototype["connectedCallback"].call(this);
|
|
5659
5725
|
}
|
|
5726
|
+
if (this.i.connectedCallback) {
|
|
5727
|
+
this.i.connectedCallback();
|
|
5728
|
+
}
|
|
5660
5729
|
if (!this._attached) {
|
|
5661
5730
|
this._attached = true;
|
|
5662
5731
|
this._flushQueuedAttributes();
|
|
5663
5732
|
}
|
|
5664
5733
|
};
|
|
5734
|
+
IgcGeographicShapeSeriesComponent.prototype.disconnectedCallback = function () {
|
|
5735
|
+
if (_super.prototype["disconnectedCallback"]) {
|
|
5736
|
+
_super.prototype["disconnectedCallback"].call(this);
|
|
5737
|
+
}
|
|
5738
|
+
if (this.i.disconnectedCallback) {
|
|
5739
|
+
this.i.disconnectedCallback();
|
|
5740
|
+
}
|
|
5741
|
+
if (this._attached) {
|
|
5742
|
+
this._attached = false;
|
|
5743
|
+
}
|
|
5744
|
+
};
|
|
5665
5745
|
Object.defineProperty(IgcGeographicShapeSeriesComponent, "observedAttributes", {
|
|
5666
5746
|
get: function () {
|
|
5667
5747
|
if (IgcGeographicShapeSeriesComponent._observedAttributesIgcGeographicShapeSeriesComponent == null) {
|
|
@@ -5932,6 +6012,7 @@ var IgcGeographicShapeSeriesComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
5932
6012
|
}
|
|
5933
6013
|
};
|
|
5934
6014
|
this.i.styleShape = delegateCombine(this.i.styleShape, this._styleShape_wrapped);
|
|
6015
|
+
;
|
|
5935
6016
|
},
|
|
5936
6017
|
enumerable: true,
|
|
5937
6018
|
configurable: true
|
|
@@ -6079,11 +6160,25 @@ var IgcGeographicPolylineSeriesComponent = /** @class */ /*@__PURE__*/ (function
|
|
|
6079
6160
|
if (_super.prototype["connectedCallback"]) {
|
|
6080
6161
|
_super.prototype["connectedCallback"].call(this);
|
|
6081
6162
|
}
|
|
6163
|
+
if (this.i.connectedCallback) {
|
|
6164
|
+
this.i.connectedCallback();
|
|
6165
|
+
}
|
|
6082
6166
|
if (!this._attached) {
|
|
6083
6167
|
this._attached = true;
|
|
6084
6168
|
this._flushQueuedAttributes();
|
|
6085
6169
|
}
|
|
6086
6170
|
};
|
|
6171
|
+
IgcGeographicPolylineSeriesComponent.prototype.disconnectedCallback = function () {
|
|
6172
|
+
if (_super.prototype["disconnectedCallback"]) {
|
|
6173
|
+
_super.prototype["disconnectedCallback"].call(this);
|
|
6174
|
+
}
|
|
6175
|
+
if (this.i.disconnectedCallback) {
|
|
6176
|
+
this.i.disconnectedCallback();
|
|
6177
|
+
}
|
|
6178
|
+
if (this._attached) {
|
|
6179
|
+
this._attached = false;
|
|
6180
|
+
}
|
|
6181
|
+
};
|
|
6087
6182
|
Object.defineProperty(IgcGeographicPolylineSeriesComponent, "observedAttributes", {
|
|
6088
6183
|
get: function () {
|
|
6089
6184
|
if (IgcGeographicPolylineSeriesComponent._observedAttributesIgcGeographicPolylineSeriesComponent == null) {
|
|
@@ -6201,6 +6296,7 @@ var IgcGeographicPolylineSeriesComponent = /** @class */ /*@__PURE__*/ (function
|
|
|
6201
6296
|
}
|
|
6202
6297
|
};
|
|
6203
6298
|
this.i.styleShape = delegateCombine(this.i.styleShape, this._styleShape_wrapped);
|
|
6299
|
+
;
|
|
6204
6300
|
},
|
|
6205
6301
|
enumerable: true,
|
|
6206
6302
|
configurable: true
|
|
@@ -6693,11 +6789,25 @@ var IgcTileSeriesComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
6693
6789
|
if (_super.prototype["connectedCallback"]) {
|
|
6694
6790
|
_super.prototype["connectedCallback"].call(this);
|
|
6695
6791
|
}
|
|
6792
|
+
if (this.i.connectedCallback) {
|
|
6793
|
+
this.i.connectedCallback();
|
|
6794
|
+
}
|
|
6696
6795
|
if (!this._attached) {
|
|
6697
6796
|
this._attached = true;
|
|
6698
6797
|
this._flushQueuedAttributes();
|
|
6699
6798
|
}
|
|
6700
6799
|
};
|
|
6800
|
+
IgcTileSeriesComponent.prototype.disconnectedCallback = function () {
|
|
6801
|
+
if (_super.prototype["disconnectedCallback"]) {
|
|
6802
|
+
_super.prototype["disconnectedCallback"].call(this);
|
|
6803
|
+
}
|
|
6804
|
+
if (this.i.disconnectedCallback) {
|
|
6805
|
+
this.i.disconnectedCallback();
|
|
6806
|
+
}
|
|
6807
|
+
if (this._attached) {
|
|
6808
|
+
this._attached = false;
|
|
6809
|
+
}
|
|
6810
|
+
};
|
|
6701
6811
|
Object.defineProperty(IgcTileSeriesComponent, "observedAttributes", {
|
|
6702
6812
|
get: function () {
|
|
6703
6813
|
if (IgcTileSeriesComponent._observedAttributesIgcTileSeriesComponent == null) {
|
|
@@ -6733,10 +6843,11 @@ var IgcTileSeriesComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
6733
6843
|
* The MapImagery which is used to provide the tiles for display.
|
|
6734
6844
|
*/
|
|
6735
6845
|
get: function () {
|
|
6736
|
-
|
|
6846
|
+
var r = this.i.sz;
|
|
6847
|
+
if (r == null) {
|
|
6737
6848
|
return null;
|
|
6738
6849
|
}
|
|
6739
|
-
return
|
|
6850
|
+
return r.externalObject;
|
|
6740
6851
|
},
|
|
6741
6852
|
set: function (v) {
|
|
6742
6853
|
v == null ? this.i.sz = null : this.i.sz = v.i;
|
|
@@ -6889,11 +7000,25 @@ var IgcGeographicTileSeriesComponent = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
6889
7000
|
if (_super.prototype["connectedCallback"]) {
|
|
6890
7001
|
_super.prototype["connectedCallback"].call(this);
|
|
6891
7002
|
}
|
|
7003
|
+
if (this.i.connectedCallback) {
|
|
7004
|
+
this.i.connectedCallback();
|
|
7005
|
+
}
|
|
6892
7006
|
if (!this._attached) {
|
|
6893
7007
|
this._attached = true;
|
|
6894
7008
|
this._flushQueuedAttributes();
|
|
6895
7009
|
}
|
|
6896
7010
|
};
|
|
7011
|
+
IgcGeographicTileSeriesComponent.prototype.disconnectedCallback = function () {
|
|
7012
|
+
if (_super.prototype["disconnectedCallback"]) {
|
|
7013
|
+
_super.prototype["disconnectedCallback"].call(this);
|
|
7014
|
+
}
|
|
7015
|
+
if (this.i.disconnectedCallback) {
|
|
7016
|
+
this.i.disconnectedCallback();
|
|
7017
|
+
}
|
|
7018
|
+
if (this._attached) {
|
|
7019
|
+
this._attached = false;
|
|
7020
|
+
}
|
|
7021
|
+
};
|
|
6897
7022
|
Object.defineProperty(IgcGeographicTileSeriesComponent, "observedAttributes", {
|
|
6898
7023
|
get: function () {
|
|
6899
7024
|
if (IgcGeographicTileSeriesComponent._observedAttributesIgcGeographicTileSeriesComponent == null) {
|
|
@@ -6929,10 +7054,11 @@ var IgcGeographicTileSeriesComponent = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
6929
7054
|
* The MapImagery which is used to provide the tiles for display.
|
|
6930
7055
|
*/
|
|
6931
7056
|
get: function () {
|
|
6932
|
-
|
|
7057
|
+
var r = this.i.ri;
|
|
7058
|
+
if (r == null) {
|
|
6933
7059
|
return null;
|
|
6934
7060
|
}
|
|
6935
|
-
return
|
|
7061
|
+
return r.externalObject;
|
|
6936
7062
|
},
|
|
6937
7063
|
set: function (v) {
|
|
6938
7064
|
v == null ? this.i.ri = null : this.i.ri = v.i;
|
|
@@ -6983,6 +7109,7 @@ var IgcGeographicTileSeriesComponent = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
6983
7109
|
}
|
|
6984
7110
|
};
|
|
6985
7111
|
this.i.imageTilesReady = delegateCombine(this.i.imageTilesReady, this._imageTilesReady_wrapped);
|
|
7112
|
+
;
|
|
6986
7113
|
},
|
|
6987
7114
|
enumerable: true,
|
|
6988
7115
|
configurable: true
|
|
@@ -7033,11 +7160,25 @@ var IgcGeographicMarkerSeriesComponent = /** @class */ /*@__PURE__*/ (function (
|
|
|
7033
7160
|
if (_super.prototype["connectedCallback"]) {
|
|
7034
7161
|
_super.prototype["connectedCallback"].call(this);
|
|
7035
7162
|
}
|
|
7163
|
+
if (this.i.connectedCallback) {
|
|
7164
|
+
this.i.connectedCallback();
|
|
7165
|
+
}
|
|
7036
7166
|
if (!this._attached) {
|
|
7037
7167
|
this._attached = true;
|
|
7038
7168
|
this._flushQueuedAttributes();
|
|
7039
7169
|
}
|
|
7040
7170
|
};
|
|
7171
|
+
IgcGeographicMarkerSeriesComponent.prototype.disconnectedCallback = function () {
|
|
7172
|
+
if (_super.prototype["disconnectedCallback"]) {
|
|
7173
|
+
_super.prototype["disconnectedCallback"].call(this);
|
|
7174
|
+
}
|
|
7175
|
+
if (this.i.disconnectedCallback) {
|
|
7176
|
+
this.i.disconnectedCallback();
|
|
7177
|
+
}
|
|
7178
|
+
if (this._attached) {
|
|
7179
|
+
this._attached = false;
|
|
7180
|
+
}
|
|
7181
|
+
};
|
|
7041
7182
|
Object.defineProperty(IgcGeographicMarkerSeriesComponent, "observedAttributes", {
|
|
7042
7183
|
get: function () {
|
|
7043
7184
|
if (IgcGeographicMarkerSeriesComponent._observedAttributesIgcGeographicMarkerSeriesComponent == null) {
|
|
@@ -7582,11 +7723,25 @@ var IgcGeographicProportionalSymbolSeriesComponent = /** @class */ /*@__PURE__*/
|
|
|
7582
7723
|
if (_super.prototype["connectedCallback"]) {
|
|
7583
7724
|
_super.prototype["connectedCallback"].call(this);
|
|
7584
7725
|
}
|
|
7726
|
+
if (this.i.connectedCallback) {
|
|
7727
|
+
this.i.connectedCallback();
|
|
7728
|
+
}
|
|
7585
7729
|
if (!this._attached) {
|
|
7586
7730
|
this._attached = true;
|
|
7587
7731
|
this._flushQueuedAttributes();
|
|
7588
7732
|
}
|
|
7589
7733
|
};
|
|
7734
|
+
IgcGeographicProportionalSymbolSeriesComponent.prototype.disconnectedCallback = function () {
|
|
7735
|
+
if (_super.prototype["disconnectedCallback"]) {
|
|
7736
|
+
_super.prototype["disconnectedCallback"].call(this);
|
|
7737
|
+
}
|
|
7738
|
+
if (this.i.disconnectedCallback) {
|
|
7739
|
+
this.i.disconnectedCallback();
|
|
7740
|
+
}
|
|
7741
|
+
if (this._attached) {
|
|
7742
|
+
this._attached = false;
|
|
7743
|
+
}
|
|
7744
|
+
};
|
|
7590
7745
|
Object.defineProperty(IgcGeographicProportionalSymbolSeriesComponent, "observedAttributes", {
|
|
7591
7746
|
get: function () {
|
|
7592
7747
|
if (IgcGeographicProportionalSymbolSeriesComponent._observedAttributesIgcGeographicProportionalSymbolSeriesComponent == null) {
|
|
@@ -7661,17 +7816,18 @@ var IgcGeographicProportionalSymbolSeriesComponent = /** @class */ /*@__PURE__*/
|
|
|
7661
7816
|
* Gets or sets the radius size scale for the bubbles.
|
|
7662
7817
|
*/
|
|
7663
7818
|
get: function () {
|
|
7664
|
-
|
|
7819
|
+
var r = this.i.rl;
|
|
7820
|
+
if (r == null) {
|
|
7665
7821
|
return null;
|
|
7666
7822
|
}
|
|
7667
|
-
if (!
|
|
7668
|
-
var e = IgcSizeScaleComponent._createFromInternal(
|
|
7823
|
+
if (!r.externalObject) {
|
|
7824
|
+
var e = IgcSizeScaleComponent._createFromInternal(r);
|
|
7669
7825
|
if (e) {
|
|
7670
|
-
e._implementation =
|
|
7826
|
+
e._implementation = r;
|
|
7671
7827
|
}
|
|
7672
|
-
|
|
7828
|
+
r.externalObject = e;
|
|
7673
7829
|
}
|
|
7674
|
-
return
|
|
7830
|
+
return r.externalObject;
|
|
7675
7831
|
},
|
|
7676
7832
|
set: function (v) {
|
|
7677
7833
|
if (v != null && this._stylingContainer && v._styling)
|
|
@@ -7712,17 +7868,18 @@ var IgcGeographicProportionalSymbolSeriesComponent = /** @class */ /*@__PURE__*/
|
|
|
7712
7868
|
* Gets or sets the brush scale for the marker brush.
|
|
7713
7869
|
*/
|
|
7714
7870
|
get: function () {
|
|
7715
|
-
|
|
7871
|
+
var r = this.i.ri;
|
|
7872
|
+
if (r == null) {
|
|
7716
7873
|
return null;
|
|
7717
7874
|
}
|
|
7718
|
-
if (!
|
|
7719
|
-
var e = IgcBrushScaleComponent._createFromInternal(
|
|
7875
|
+
if (!r.externalObject) {
|
|
7876
|
+
var e = IgcBrushScaleComponent._createFromInternal(r);
|
|
7720
7877
|
if (e) {
|
|
7721
|
-
e._implementation =
|
|
7878
|
+
e._implementation = r;
|
|
7722
7879
|
}
|
|
7723
|
-
|
|
7880
|
+
r.externalObject = e;
|
|
7724
7881
|
}
|
|
7725
|
-
return
|
|
7882
|
+
return r.externalObject;
|
|
7726
7883
|
},
|
|
7727
7884
|
set: function (v) {
|
|
7728
7885
|
if (v != null && this._stylingContainer && v._styling)
|
|
@@ -7913,6 +8070,7 @@ var IgcGeographicProportionalSymbolSeriesComponent = /** @class */ /*@__PURE__*/
|
|
|
7913
8070
|
}
|
|
7914
8071
|
};
|
|
7915
8072
|
this.i.assigningScatterStyle = delegateCombine(this.i.assigningScatterStyle, this._assigningScatterStyle_wrapped);
|
|
8073
|
+
;
|
|
7916
8074
|
},
|
|
7917
8075
|
enumerable: true,
|
|
7918
8076
|
configurable: true
|
|
@@ -7943,6 +8101,7 @@ var IgcGeographicProportionalSymbolSeriesComponent = /** @class */ /*@__PURE__*/
|
|
|
7943
8101
|
}
|
|
7944
8102
|
};
|
|
7945
8103
|
this.i.assigningScatterMarkerStyle = delegateCombine(this.i.assigningScatterMarkerStyle, this._assigningScatterMarkerStyle_wrapped);
|
|
8104
|
+
;
|
|
7946
8105
|
},
|
|
7947
8106
|
enumerable: true,
|
|
7948
8107
|
configurable: true
|
|
@@ -8188,11 +8347,25 @@ var IgcGeographicSymbolSeriesComponent = /** @class */ /*@__PURE__*/ (function (
|
|
|
8188
8347
|
if (_super.prototype["connectedCallback"]) {
|
|
8189
8348
|
_super.prototype["connectedCallback"].call(this);
|
|
8190
8349
|
}
|
|
8350
|
+
if (this.i.connectedCallback) {
|
|
8351
|
+
this.i.connectedCallback();
|
|
8352
|
+
}
|
|
8191
8353
|
if (!this._attached) {
|
|
8192
8354
|
this._attached = true;
|
|
8193
8355
|
this._flushQueuedAttributes();
|
|
8194
8356
|
}
|
|
8195
8357
|
};
|
|
8358
|
+
IgcGeographicSymbolSeriesComponent.prototype.disconnectedCallback = function () {
|
|
8359
|
+
if (_super.prototype["disconnectedCallback"]) {
|
|
8360
|
+
_super.prototype["disconnectedCallback"].call(this);
|
|
8361
|
+
}
|
|
8362
|
+
if (this.i.disconnectedCallback) {
|
|
8363
|
+
this.i.disconnectedCallback();
|
|
8364
|
+
}
|
|
8365
|
+
if (this._attached) {
|
|
8366
|
+
this._attached = false;
|
|
8367
|
+
}
|
|
8368
|
+
};
|
|
8196
8369
|
Object.defineProperty(IgcGeographicSymbolSeriesComponent, "observedAttributes", {
|
|
8197
8370
|
get: function () {
|
|
8198
8371
|
if (IgcGeographicSymbolSeriesComponent._observedAttributesIgcGeographicSymbolSeriesComponent == null) {
|
|
@@ -8345,6 +8518,7 @@ var IgcGeographicSymbolSeriesComponent = /** @class */ /*@__PURE__*/ (function (
|
|
|
8345
8518
|
}
|
|
8346
8519
|
};
|
|
8347
8520
|
this.i.assigningScatterStyle = delegateCombine(this.i.assigningScatterStyle, this._assigningScatterStyle_wrapped);
|
|
8521
|
+
;
|
|
8348
8522
|
},
|
|
8349
8523
|
enumerable: true,
|
|
8350
8524
|
configurable: true
|
|
@@ -8375,6 +8549,7 @@ var IgcGeographicSymbolSeriesComponent = /** @class */ /*@__PURE__*/ (function (
|
|
|
8375
8549
|
}
|
|
8376
8550
|
};
|
|
8377
8551
|
this.i.assigningScatterMarkerStyle = delegateCombine(this.i.assigningScatterMarkerStyle, this._assigningScatterMarkerStyle_wrapped);
|
|
8552
|
+
;
|
|
8378
8553
|
},
|
|
8379
8554
|
enumerable: true,
|
|
8380
8555
|
configurable: true
|
|
@@ -8576,11 +8751,25 @@ var IgcGeographicScatterAreaSeriesComponent = /** @class */ /*@__PURE__*/ (funct
|
|
|
8576
8751
|
if (_super.prototype["connectedCallback"]) {
|
|
8577
8752
|
_super.prototype["connectedCallback"].call(this);
|
|
8578
8753
|
}
|
|
8754
|
+
if (this.i.connectedCallback) {
|
|
8755
|
+
this.i.connectedCallback();
|
|
8756
|
+
}
|
|
8579
8757
|
if (!this._attached) {
|
|
8580
8758
|
this._attached = true;
|
|
8581
8759
|
this._flushQueuedAttributes();
|
|
8582
8760
|
}
|
|
8583
8761
|
};
|
|
8762
|
+
IgcGeographicScatterAreaSeriesComponent.prototype.disconnectedCallback = function () {
|
|
8763
|
+
if (_super.prototype["disconnectedCallback"]) {
|
|
8764
|
+
_super.prototype["disconnectedCallback"].call(this);
|
|
8765
|
+
}
|
|
8766
|
+
if (this.i.disconnectedCallback) {
|
|
8767
|
+
this.i.disconnectedCallback();
|
|
8768
|
+
}
|
|
8769
|
+
if (this._attached) {
|
|
8770
|
+
this._attached = false;
|
|
8771
|
+
}
|
|
8772
|
+
};
|
|
8584
8773
|
Object.defineProperty(IgcGeographicScatterAreaSeriesComponent, "observedAttributes", {
|
|
8585
8774
|
get: function () {
|
|
8586
8775
|
if (IgcGeographicScatterAreaSeriesComponent._observedAttributesIgcGeographicScatterAreaSeriesComponent == null) {
|
|
@@ -8629,17 +8818,18 @@ var IgcGeographicScatterAreaSeriesComponent = /** @class */ /*@__PURE__*/ (funct
|
|
|
8629
8818
|
* The ColorScale used to resolve the color values of points in the series.
|
|
8630
8819
|
*/
|
|
8631
8820
|
get: function () {
|
|
8632
|
-
|
|
8821
|
+
var r = this.i.q3;
|
|
8822
|
+
if (r == null) {
|
|
8633
8823
|
return null;
|
|
8634
8824
|
}
|
|
8635
|
-
if (!
|
|
8636
|
-
var e = IgcColorScaleComponent._createFromInternal(
|
|
8825
|
+
if (!r.externalObject) {
|
|
8826
|
+
var e = IgcColorScaleComponent._createFromInternal(r);
|
|
8637
8827
|
if (e) {
|
|
8638
|
-
e._implementation =
|
|
8828
|
+
e._implementation = r;
|
|
8639
8829
|
}
|
|
8640
|
-
|
|
8830
|
+
r.externalObject = e;
|
|
8641
8831
|
}
|
|
8642
|
-
return
|
|
8832
|
+
return r.externalObject;
|
|
8643
8833
|
},
|
|
8644
8834
|
set: function (v) {
|
|
8645
8835
|
if (v != null && this._stylingContainer && v._styling)
|
|
@@ -8654,17 +8844,18 @@ var IgcGeographicScatterAreaSeriesComponent = /** @class */ /*@__PURE__*/ (funct
|
|
|
8654
8844
|
* Gets actual color scale that is set on ColorScale property or default ColorScale
|
|
8655
8845
|
*/
|
|
8656
8846
|
get: function () {
|
|
8657
|
-
|
|
8847
|
+
var r = this.i.q2;
|
|
8848
|
+
if (r == null) {
|
|
8658
8849
|
return null;
|
|
8659
8850
|
}
|
|
8660
|
-
if (!
|
|
8661
|
-
var e = IgcColorScaleComponent._createFromInternal(
|
|
8851
|
+
if (!r.externalObject) {
|
|
8852
|
+
var e = IgcColorScaleComponent._createFromInternal(r);
|
|
8662
8853
|
if (e) {
|
|
8663
|
-
e._implementation =
|
|
8854
|
+
e._implementation = r;
|
|
8664
8855
|
}
|
|
8665
|
-
|
|
8856
|
+
r.externalObject = e;
|
|
8666
8857
|
}
|
|
8667
|
-
return
|
|
8858
|
+
return r.externalObject;
|
|
8668
8859
|
},
|
|
8669
8860
|
set: function (v) {
|
|
8670
8861
|
if (v != null && this._stylingContainer && v._styling)
|
|
@@ -8731,6 +8922,7 @@ var IgcGeographicScatterAreaSeriesComponent = /** @class */ /*@__PURE__*/ (funct
|
|
|
8731
8922
|
}
|
|
8732
8923
|
};
|
|
8733
8924
|
this.i.triangulationStatusChanged = delegateCombine(this.i.triangulationStatusChanged, this._triangulationStatusChanged_wrapped);
|
|
8925
|
+
;
|
|
8734
8926
|
},
|
|
8735
8927
|
enumerable: true,
|
|
8736
8928
|
configurable: true
|
|
@@ -9002,11 +9194,25 @@ var IgcGeographicHighDensityScatterSeriesComponent = /** @class */ /*@__PURE__*/
|
|
|
9002
9194
|
if (_super.prototype["connectedCallback"]) {
|
|
9003
9195
|
_super.prototype["connectedCallback"].call(this);
|
|
9004
9196
|
}
|
|
9197
|
+
if (this.i.connectedCallback) {
|
|
9198
|
+
this.i.connectedCallback();
|
|
9199
|
+
}
|
|
9005
9200
|
if (!this._attached) {
|
|
9006
9201
|
this._attached = true;
|
|
9007
9202
|
this._flushQueuedAttributes();
|
|
9008
9203
|
}
|
|
9009
9204
|
};
|
|
9205
|
+
IgcGeographicHighDensityScatterSeriesComponent.prototype.disconnectedCallback = function () {
|
|
9206
|
+
if (_super.prototype["disconnectedCallback"]) {
|
|
9207
|
+
_super.prototype["disconnectedCallback"].call(this);
|
|
9208
|
+
}
|
|
9209
|
+
if (this.i.disconnectedCallback) {
|
|
9210
|
+
this.i.disconnectedCallback();
|
|
9211
|
+
}
|
|
9212
|
+
if (this._attached) {
|
|
9213
|
+
this._attached = false;
|
|
9214
|
+
}
|
|
9215
|
+
};
|
|
9010
9216
|
Object.defineProperty(IgcGeographicHighDensityScatterSeriesComponent, "observedAttributes", {
|
|
9011
9217
|
get: function () {
|
|
9012
9218
|
if (IgcGeographicHighDensityScatterSeriesComponent._observedAttributesIgcGeographicHighDensityScatterSeriesComponent == null) {
|
|
@@ -9215,6 +9421,7 @@ var IgcGeographicHighDensityScatterSeriesComponent = /** @class */ /*@__PURE__*/
|
|
|
9215
9421
|
}
|
|
9216
9422
|
};
|
|
9217
9423
|
this.i.progressiveLoadStatusChanged = delegateCombine(this.i.progressiveLoadStatusChanged, this._progressiveLoadStatusChanged_wrapped);
|
|
9424
|
+
;
|
|
9218
9425
|
},
|
|
9219
9426
|
enumerable: true,
|
|
9220
9427
|
configurable: true
|
|
@@ -9412,11 +9619,25 @@ var IgcGeographicContourLineSeriesComponent = /** @class */ /*@__PURE__*/ (funct
|
|
|
9412
9619
|
if (_super.prototype["connectedCallback"]) {
|
|
9413
9620
|
_super.prototype["connectedCallback"].call(this);
|
|
9414
9621
|
}
|
|
9622
|
+
if (this.i.connectedCallback) {
|
|
9623
|
+
this.i.connectedCallback();
|
|
9624
|
+
}
|
|
9415
9625
|
if (!this._attached) {
|
|
9416
9626
|
this._attached = true;
|
|
9417
9627
|
this._flushQueuedAttributes();
|
|
9418
9628
|
}
|
|
9419
9629
|
};
|
|
9630
|
+
IgcGeographicContourLineSeriesComponent.prototype.disconnectedCallback = function () {
|
|
9631
|
+
if (_super.prototype["disconnectedCallback"]) {
|
|
9632
|
+
_super.prototype["disconnectedCallback"].call(this);
|
|
9633
|
+
}
|
|
9634
|
+
if (this.i.disconnectedCallback) {
|
|
9635
|
+
this.i.disconnectedCallback();
|
|
9636
|
+
}
|
|
9637
|
+
if (this._attached) {
|
|
9638
|
+
this._attached = false;
|
|
9639
|
+
}
|
|
9640
|
+
};
|
|
9420
9641
|
Object.defineProperty(IgcGeographicContourLineSeriesComponent, "observedAttributes", {
|
|
9421
9642
|
get: function () {
|
|
9422
9643
|
if (IgcGeographicContourLineSeriesComponent._observedAttributesIgcGeographicContourLineSeriesComponent == null) {
|
|
@@ -9465,17 +9686,18 @@ var IgcGeographicContourLineSeriesComponent = /** @class */ /*@__PURE__*/ (funct
|
|
|
9465
9686
|
* The ValueBrushScale to use when determining Brushes for each contour line, based on the values found in ValueMemberPath.
|
|
9466
9687
|
*/
|
|
9467
9688
|
get: function () {
|
|
9468
|
-
|
|
9689
|
+
var r = this.i.q5;
|
|
9690
|
+
if (r == null) {
|
|
9469
9691
|
return null;
|
|
9470
9692
|
}
|
|
9471
|
-
if (!
|
|
9472
|
-
var e = IgcValueBrushScaleComponent._createFromInternal(
|
|
9693
|
+
if (!r.externalObject) {
|
|
9694
|
+
var e = IgcValueBrushScaleComponent._createFromInternal(r);
|
|
9473
9695
|
if (e) {
|
|
9474
|
-
e._implementation =
|
|
9696
|
+
e._implementation = r;
|
|
9475
9697
|
}
|
|
9476
|
-
|
|
9698
|
+
r.externalObject = e;
|
|
9477
9699
|
}
|
|
9478
|
-
return
|
|
9700
|
+
return r.externalObject;
|
|
9479
9701
|
},
|
|
9480
9702
|
set: function (v) {
|
|
9481
9703
|
if (v != null && this._stylingContainer && v._styling)
|
|
@@ -9490,17 +9712,18 @@ var IgcGeographicContourLineSeriesComponent = /** @class */ /*@__PURE__*/ (funct
|
|
|
9490
9712
|
* Gets actual fill scale that is set on the FillScale property or default FillScale
|
|
9491
9713
|
*/
|
|
9492
9714
|
get: function () {
|
|
9493
|
-
|
|
9715
|
+
var r = this.i.q4;
|
|
9716
|
+
if (r == null) {
|
|
9494
9717
|
return null;
|
|
9495
9718
|
}
|
|
9496
|
-
if (!
|
|
9497
|
-
var e = IgcValueBrushScaleComponent._createFromInternal(
|
|
9719
|
+
if (!r.externalObject) {
|
|
9720
|
+
var e = IgcValueBrushScaleComponent._createFromInternal(r);
|
|
9498
9721
|
if (e) {
|
|
9499
|
-
e._implementation =
|
|
9722
|
+
e._implementation = r;
|
|
9500
9723
|
}
|
|
9501
|
-
|
|
9724
|
+
r.externalObject = e;
|
|
9502
9725
|
}
|
|
9503
|
-
return
|
|
9726
|
+
return r.externalObject;
|
|
9504
9727
|
},
|
|
9505
9728
|
set: function (v) {
|
|
9506
9729
|
if (v != null && this._stylingContainer && v._styling)
|
|
@@ -9515,17 +9738,18 @@ var IgcGeographicContourLineSeriesComponent = /** @class */ /*@__PURE__*/ (funct
|
|
|
9515
9738
|
* The ContourValueResolver used to determine the numeric values of contours.
|
|
9516
9739
|
*/
|
|
9517
9740
|
get: function () {
|
|
9518
|
-
|
|
9741
|
+
var r = this.i.q1;
|
|
9742
|
+
if (r == null) {
|
|
9519
9743
|
return null;
|
|
9520
9744
|
}
|
|
9521
|
-
if (!
|
|
9522
|
-
var e = IgcContourValueResolverComponent._createFromInternal(
|
|
9745
|
+
if (!r.externalObject) {
|
|
9746
|
+
var e = IgcContourValueResolverComponent._createFromInternal(r);
|
|
9523
9747
|
if (e) {
|
|
9524
|
-
e._implementation =
|
|
9748
|
+
e._implementation = r;
|
|
9525
9749
|
}
|
|
9526
|
-
|
|
9750
|
+
r.externalObject = e;
|
|
9527
9751
|
}
|
|
9528
|
-
return
|
|
9752
|
+
return r.externalObject;
|
|
9529
9753
|
},
|
|
9530
9754
|
set: function (v) {
|
|
9531
9755
|
if (v != null && this._stylingContainer && v._styling)
|
|
@@ -9591,6 +9815,7 @@ var IgcGeographicContourLineSeriesComponent = /** @class */ /*@__PURE__*/ (funct
|
|
|
9591
9815
|
}
|
|
9592
9816
|
};
|
|
9593
9817
|
this.i.triangulationStatusChanged = delegateCombine(this.i.triangulationStatusChanged, this._triangulationStatusChanged_wrapped);
|
|
9818
|
+
;
|
|
9594
9819
|
},
|
|
9595
9820
|
enumerable: true,
|
|
9596
9821
|
configurable: true
|
|
@@ -10089,11 +10314,25 @@ var IgcGeographicMarkerSeriesBaseComponent = /** @class */ /*@__PURE__*/ (functi
|
|
|
10089
10314
|
if (_super.prototype["connectedCallback"]) {
|
|
10090
10315
|
_super.prototype["connectedCallback"].call(this);
|
|
10091
10316
|
}
|
|
10317
|
+
if (this.i.connectedCallback) {
|
|
10318
|
+
this.i.connectedCallback();
|
|
10319
|
+
}
|
|
10092
10320
|
if (!this._attached) {
|
|
10093
10321
|
this._attached = true;
|
|
10094
10322
|
this._flushQueuedAttributes();
|
|
10095
10323
|
}
|
|
10096
10324
|
};
|
|
10325
|
+
IgcGeographicMarkerSeriesBaseComponent.prototype.disconnectedCallback = function () {
|
|
10326
|
+
if (_super.prototype["disconnectedCallback"]) {
|
|
10327
|
+
_super.prototype["disconnectedCallback"].call(this);
|
|
10328
|
+
}
|
|
10329
|
+
if (this.i.disconnectedCallback) {
|
|
10330
|
+
this.i.disconnectedCallback();
|
|
10331
|
+
}
|
|
10332
|
+
if (this._attached) {
|
|
10333
|
+
this._attached = false;
|
|
10334
|
+
}
|
|
10335
|
+
};
|
|
10097
10336
|
Object.defineProperty(IgcGeographicMarkerSeriesBaseComponent, "observedAttributes", {
|
|
10098
10337
|
get: function () {
|
|
10099
10338
|
if (IgcGeographicMarkerSeriesBaseComponent._observedAttributesIgcGeographicMarkerSeriesBaseComponent == null) {
|
|
@@ -10131,11 +10370,25 @@ var IgcGeographicProportionalSymbolSeriesBaseComponent = /** @class */ /*@__PURE
|
|
|
10131
10370
|
if (_super.prototype["connectedCallback"]) {
|
|
10132
10371
|
_super.prototype["connectedCallback"].call(this);
|
|
10133
10372
|
}
|
|
10373
|
+
if (this.i.connectedCallback) {
|
|
10374
|
+
this.i.connectedCallback();
|
|
10375
|
+
}
|
|
10134
10376
|
if (!this._attached) {
|
|
10135
10377
|
this._attached = true;
|
|
10136
10378
|
this._flushQueuedAttributes();
|
|
10137
10379
|
}
|
|
10138
10380
|
};
|
|
10381
|
+
IgcGeographicProportionalSymbolSeriesBaseComponent.prototype.disconnectedCallback = function () {
|
|
10382
|
+
if (_super.prototype["disconnectedCallback"]) {
|
|
10383
|
+
_super.prototype["disconnectedCallback"].call(this);
|
|
10384
|
+
}
|
|
10385
|
+
if (this.i.disconnectedCallback) {
|
|
10386
|
+
this.i.disconnectedCallback();
|
|
10387
|
+
}
|
|
10388
|
+
if (this._attached) {
|
|
10389
|
+
this._attached = false;
|
|
10390
|
+
}
|
|
10391
|
+
};
|
|
10139
10392
|
Object.defineProperty(IgcGeographicProportionalSymbolSeriesBaseComponent, "observedAttributes", {
|
|
10140
10393
|
get: function () {
|
|
10141
10394
|
if (IgcGeographicProportionalSymbolSeriesBaseComponent._observedAttributesIgcGeographicProportionalSymbolSeriesBaseComponent == null) {
|
|
@@ -10191,11 +10444,25 @@ var IgcGeographicShapeSeriesBaseBaseComponent = /** @class */ /*@__PURE__*/ (fun
|
|
|
10191
10444
|
if (_super.prototype["connectedCallback"]) {
|
|
10192
10445
|
_super.prototype["connectedCallback"].call(this);
|
|
10193
10446
|
}
|
|
10447
|
+
if (this.i.connectedCallback) {
|
|
10448
|
+
this.i.connectedCallback();
|
|
10449
|
+
}
|
|
10194
10450
|
if (!this._attached) {
|
|
10195
10451
|
this._attached = true;
|
|
10196
10452
|
this._flushQueuedAttributes();
|
|
10197
10453
|
}
|
|
10198
10454
|
};
|
|
10455
|
+
IgcGeographicShapeSeriesBaseBaseComponent.prototype.disconnectedCallback = function () {
|
|
10456
|
+
if (_super.prototype["disconnectedCallback"]) {
|
|
10457
|
+
_super.prototype["disconnectedCallback"].call(this);
|
|
10458
|
+
}
|
|
10459
|
+
if (this.i.disconnectedCallback) {
|
|
10460
|
+
this.i.disconnectedCallback();
|
|
10461
|
+
}
|
|
10462
|
+
if (this._attached) {
|
|
10463
|
+
this._attached = false;
|
|
10464
|
+
}
|
|
10465
|
+
};
|
|
10199
10466
|
Object.defineProperty(IgcGeographicShapeSeriesBaseBaseComponent, "observedAttributes", {
|
|
10200
10467
|
get: function () {
|
|
10201
10468
|
if (IgcGeographicShapeSeriesBaseBaseComponent._observedAttributesIgcGeographicShapeSeriesBaseBaseComponent == null) {
|
|
@@ -10251,11 +10518,25 @@ var IgcGeographicSymbolSeriesBaseComponent = /** @class */ /*@__PURE__*/ (functi
|
|
|
10251
10518
|
if (_super.prototype["connectedCallback"]) {
|
|
10252
10519
|
_super.prototype["connectedCallback"].call(this);
|
|
10253
10520
|
}
|
|
10521
|
+
if (this.i.connectedCallback) {
|
|
10522
|
+
this.i.connectedCallback();
|
|
10523
|
+
}
|
|
10254
10524
|
if (!this._attached) {
|
|
10255
10525
|
this._attached = true;
|
|
10256
10526
|
this._flushQueuedAttributes();
|
|
10257
10527
|
}
|
|
10258
10528
|
};
|
|
10529
|
+
IgcGeographicSymbolSeriesBaseComponent.prototype.disconnectedCallback = function () {
|
|
10530
|
+
if (_super.prototype["disconnectedCallback"]) {
|
|
10531
|
+
_super.prototype["disconnectedCallback"].call(this);
|
|
10532
|
+
}
|
|
10533
|
+
if (this.i.disconnectedCallback) {
|
|
10534
|
+
this.i.disconnectedCallback();
|
|
10535
|
+
}
|
|
10536
|
+
if (this._attached) {
|
|
10537
|
+
this._attached = false;
|
|
10538
|
+
}
|
|
10539
|
+
};
|
|
10259
10540
|
Object.defineProperty(IgcGeographicSymbolSeriesBaseComponent, "observedAttributes", {
|
|
10260
10541
|
get: function () {
|
|
10261
10542
|
if (IgcGeographicSymbolSeriesBaseComponent._observedAttributesIgcGeographicSymbolSeriesBaseComponent == null) {
|
|
@@ -10311,11 +10592,25 @@ var IgcGeographicXYTriangulatingSeriesBaseComponent = /** @class */ /*@__PURE__*
|
|
|
10311
10592
|
if (_super.prototype["connectedCallback"]) {
|
|
10312
10593
|
_super.prototype["connectedCallback"].call(this);
|
|
10313
10594
|
}
|
|
10595
|
+
if (this.i.connectedCallback) {
|
|
10596
|
+
this.i.connectedCallback();
|
|
10597
|
+
}
|
|
10314
10598
|
if (!this._attached) {
|
|
10315
10599
|
this._attached = true;
|
|
10316
10600
|
this._flushQueuedAttributes();
|
|
10317
10601
|
}
|
|
10318
10602
|
};
|
|
10603
|
+
IgcGeographicXYTriangulatingSeriesBaseComponent.prototype.disconnectedCallback = function () {
|
|
10604
|
+
if (_super.prototype["disconnectedCallback"]) {
|
|
10605
|
+
_super.prototype["disconnectedCallback"].call(this);
|
|
10606
|
+
}
|
|
10607
|
+
if (this.i.disconnectedCallback) {
|
|
10608
|
+
this.i.disconnectedCallback();
|
|
10609
|
+
}
|
|
10610
|
+
if (this._attached) {
|
|
10611
|
+
this._attached = false;
|
|
10612
|
+
}
|
|
10613
|
+
};
|
|
10319
10614
|
Object.defineProperty(IgcGeographicXYTriangulatingSeriesBaseComponent, "observedAttributes", {
|
|
10320
10615
|
get: function () {
|
|
10321
10616
|
if (IgcGeographicXYTriangulatingSeriesBaseComponent._observedAttributesIgcGeographicXYTriangulatingSeriesBaseComponent == null) {
|