igniteui-react-core
Version:
Ignite UI React Core.
98 lines (97 loc) • 4.74 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { MapTileSource } from "./MapTileSource";
import { DependencyProperty } from "./DependencyProperty";
import { String_$type, Boolean_$type, Number_$type, typeGetValue, typeCast, markType } from "./type";
import { Uri } from "./Uri";
import { PropertyMetadata } from "./PropertyMetadata";
import { truncate } from "./number";
import { stringIsNullOrEmpty } from "./string";
import { stringFormat1 } from "./stringExtended";
/**
* @hidden
*/
export let ArcGISOnlineTileSource = /*@__PURE__*/ (() => {
class ArcGISOnlineTileSource extends MapTileSource {
constructor() {
super(2097152, 2097152, 256, 256, 0);
}
get mapServerUri() {
return this.c(ArcGISOnlineTileSource.mapServerUriProperty);
}
set mapServerUri(a) {
this.h(ArcGISOnlineTileSource.mapServerUriProperty, a);
}
get isMapPublic() {
return this.c(ArcGISOnlineTileSource.isMapPublicProperty);
}
set isMapPublic(a) {
this.h(ArcGISOnlineTileSource.isMapPublicProperty, a);
}
get levelOfDetail() {
return typeGetValue(this.c(ArcGISOnlineTileSource.levelOfDetailProperty));
}
set levelOfDetail(a) {
this.h(ArcGISOnlineTileSource.levelOfDetailProperty, a);
}
get userToken() {
return this.c(ArcGISOnlineTileSource.userTokenProperty);
}
set userToken(a) {
this.h(ArcGISOnlineTileSource.userTokenProperty, a);
}
x(a, b, c, d) {
let e = this.mapServerUri + "/tile/{0}/{1}/{2}";
let f = "";
if (stringIsNullOrEmpty(this.mapServerUri) || this.levelOfDetail < 1 || !Uri.isWellFormedUriString(this.mapServerUri, 1)) {
return;
}
if (!this.isMapPublic) {
if (!stringIsNullOrEmpty(this.userToken)) {
e += "?token={3}";
f = this.userToken.trim();
}
else {
return;
}
}
let g = a - 8;
if (g > 0) {
let h = stringFormat1(e, g, c, b, f);
d.add(new Uri(0, h));
}
}
static ad(a, b) {
let c = a;
if (b.f == ArcGISOnlineTileSource.mapServerUriProperty) {
if (c.mapServerUri != typeCast(String_$type, b.newValue)) {
c.mapServerUri = typeCast(String_$type, b.newValue);
}
c.y(0, 0, 0, 0);
}
if (b.f == ArcGISOnlineTileSource.userTokenProperty) {
if (c.userToken != typeCast(String_$type, b.newValue)) {
c.userToken = typeCast(String_$type, b.newValue);
}
c.y(0, 0, 0, 0);
}
if (b.f == ArcGISOnlineTileSource.levelOfDetailProperty) {
c.v = truncate((Math.pow(2, c.levelOfDetail - 1) * 256));
c.u = truncate((Math.pow(2, c.levelOfDetail - 1) * 256));
}
if (b.f == ArcGISOnlineTileSource.isMapPublicProperty) {
c.y(0, 0, 0, 0);
}
}
}
ArcGISOnlineTileSource.$t = /*@__PURE__*/ markType(ArcGISOnlineTileSource, 'ArcGISOnlineTileSource', MapTileSource.$);
ArcGISOnlineTileSource.mapServerUriProperty = /*@__PURE__*/ DependencyProperty.i("MapServerUri", String_$type, ArcGISOnlineTileSource.$, /*@__PURE__*/ new PropertyMetadata(2, null, ArcGISOnlineTileSource.ad));
ArcGISOnlineTileSource.isMapPublicProperty = /*@__PURE__*/ DependencyProperty.i("IsMapPublic", Boolean_$type, ArcGISOnlineTileSource.$, /*@__PURE__*/ new PropertyMetadata(2, true, ArcGISOnlineTileSource.ad));
ArcGISOnlineTileSource.levelOfDetailProperty = /*@__PURE__*/ DependencyProperty.i("LevelOfDetail", Number_$type, ArcGISOnlineTileSource.$, /*@__PURE__*/ new PropertyMetadata(2, -1, ArcGISOnlineTileSource.ad));
ArcGISOnlineTileSource.userTokenProperty = /*@__PURE__*/ DependencyProperty.i("UserToken", String_$type, ArcGISOnlineTileSource.$, /*@__PURE__*/ new PropertyMetadata(2, null, ArcGISOnlineTileSource.ad));
return ArcGISOnlineTileSource;
})();