igniteui-react-core
Version:
Ignite UI React Core.
235 lines (234 loc) • 6.57 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";
import { SeriesViewerDescription } from "./SeriesViewerDescription";
/**
* @hidden
*/
export let GeographicMapImageryDescription = /*@__PURE__*/ (() => {
class GeographicMapImageryDescription extends Description {
get_type() {
return "GeographicMapImagery";
}
get type() {
return this.get_type();
}
constructor() {
super();
this.j = null;
this.h = null;
this.t = null;
this.l = false;
this.u = null;
this.n = 0;
this.s = null;
this.r = null;
this.p = null;
this.q = null;
}
get windowRect() {
return this.j;
}
set windowRect(a) {
this.j = a;
this.g("WindowRect");
}
get geographicMap() {
return this.h;
}
set geographicMap(a) {
this.h = a;
this.g("GeographicMap");
}
get referer() {
return this.t;
}
set referer(a) {
this.t = a;
this.g("Referer");
}
get isHorizontalWrappingEnabled() {
return this.l;
}
set isHorizontalWrappingEnabled(a) {
this.l = a;
this.g("IsHorizontalWrappingEnabled");
}
get userAgent() {
return this.u;
}
set userAgent(a) {
this.u = a;
this.g("UserAgent");
}
get opacity() {
return this.n;
}
set opacity(a) {
this.n = a;
this.g("Opacity");
}
get imageTilesReadyRef() {
return this.s;
}
set imageTilesReadyRef(a) {
this.s = a;
this.g("ImageTilesReadyRef");
}
get imagesChangedRef() {
return this.r;
}
set imagesChangedRef(a) {
this.r = a;
this.g("ImagesChangedRef");
}
get cancellingImageRef() {
return this.p;
}
set cancellingImageRef(a) {
this.p = a;
this.g("CancellingImageRef");
}
get downloadingImageRef() {
return this.q;
}
set downloadingImageRef(a) {
this.q = a;
this.g("DownloadingImageRef");
}
}
GeographicMapImageryDescription.$t = /*@__PURE__*/ markType(GeographicMapImageryDescription, 'GeographicMapImageryDescription', Description.$);
return GeographicMapImageryDescription;
})();
/**
* @hidden
*/
export let GeographicMapDescription = /*@__PURE__*/ (() => {
class GeographicMapDescription extends SeriesViewerDescription {
get_type() {
return "GeographicMap";
}
constructor() {
super();
this.ie = false;
this.is = null;
this.ib = false;
this.ip = null;
this.id = false;
this.ic = false;
this.h8 = null;
this.h7 = null;
this.h5 = null;
this.il = 0;
this.ik = 0;
this.ir = null;
this.it = null;
this.iq = null;
}
get zoomable() {
return this.ie;
}
set zoomable(a) {
this.ie = a;
this.g("Zoomable");
}
get resizeBehavior() {
return this.is;
}
set resizeBehavior(a) {
this.is = a;
this.g("ResizeBehavior");
}
get isHorizontalWrappingEnabled() {
return this.ib;
}
set isHorizontalWrappingEnabled(a) {
this.ib = a;
this.g("IsHorizontalWrappingEnabled");
}
get backgroundTilingMode() {
return this.ip;
}
set backgroundTilingMode(a) {
this.ip = a;
this.g("BackgroundTilingMode");
}
get useWorldRectForZoomBounds() {
return this.id;
}
set useWorldRectForZoomBounds(a) {
this.id = a;
this.g("UseWorldRectForZoomBounds");
}
get suppressZoomResetOnWorldRectChange() {
return this.ic;
}
set suppressZoomResetOnWorldRectChange(a) {
this.ic = a;
this.g("SuppressZoomResetOnWorldRectChange");
}
get worldRect() {
return this.h8;
}
set worldRect(a) {
this.h8 = a;
this.g("WorldRect");
}
get actualWorldRect() {
return this.h7;
}
set actualWorldRect(a) {
this.h7 = a;
this.g("ActualWorldRect");
}
get backgroundContent() {
return this.h5;
}
set backgroundContent(a) {
this.h5 = a;
this.g("BackgroundContent");
}
get windowScale() {
return this.il;
}
set windowScale(a) {
this.il = a;
this.g("WindowScale");
}
get actualWindowScale() {
return this.ik;
}
set actualWindowScale(a) {
this.ik = a;
this.g("ActualWindowScale");
}
get imageTilesReadyRef() {
return this.ir;
}
set imageTilesReadyRef(a) {
this.ir = a;
this.g("ImageTilesReadyRef");
}
get width() {
return this.it;
}
set width(a) {
this.it = a;
this.g("Width");
}
get height() {
return this.iq;
}
set height(a) {
this.iq = a;
this.g("Height");
}
}
GeographicMapDescription.$t = /*@__PURE__*/ markType(GeographicMapDescription, 'GeographicMapDescription', SeriesViewerDescription.$);
return GeographicMapDescription;
})();