igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
99 lines (98 loc) • 3.01 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 { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
export let GeographicMapImageryDescription = /*@__PURE__*/ (() => {
class GeographicMapImageryDescription extends Description {
constructor() {
super();
this.k = null;
this.u = null;
this.m = false;
this.v = null;
this.o = 0;
this.t = null;
this.s = null;
this.q = null;
this.r = null;
}
get_type() {
return "GeographicMapImagery";
}
get type() {
return this.get_type();
}
get windowRect() {
return this.k;
}
set windowRect(a) {
this.k = a;
this.j("WindowRect");
}
get referer() {
return this.u;
}
set referer(a) {
this.u = a;
this.j("Referer");
}
get isHorizontalWrappingEnabled() {
return this.m;
}
set isHorizontalWrappingEnabled(a) {
this.m = a;
this.j("IsHorizontalWrappingEnabled");
}
get userAgent() {
return this.v;
}
set userAgent(a) {
this.v = a;
this.j("UserAgent");
}
get opacity() {
return this.o;
}
set opacity(a) {
this.o = a;
this.j("Opacity");
}
get imageTilesReadyRef() {
return this.t;
}
set imageTilesReadyRef(a) {
this.t = a;
this.j("ImageTilesReadyRef");
}
get imagesChangedRef() {
return this.s;
}
set imagesChangedRef(a) {
this.s = a;
this.j("ImagesChangedRef");
}
get cancellingImageRef() {
return this.q;
}
set cancellingImageRef(a) {
this.q = a;
this.j("CancellingImageRef");
}
get downloadingImageRef() {
return this.r;
}
set downloadingImageRef(a) {
this.r = a;
this.j("DownloadingImageRef");
}
}
GeographicMapImageryDescription.$t = markType(GeographicMapImageryDescription, 'GeographicMapImageryDescription', Description.$);
return GeographicMapImageryDescription;
})();