UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

141 lines (140 loc) 4.68 kB
/* 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 { __extends } from "tslib"; import { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ var GeographicMapImageryDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(GeographicMapImageryDescription, _super); function GeographicMapImageryDescription() { var _this = _super.call(this) || this; _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; return _this; } GeographicMapImageryDescription.prototype.get_type = function () { return "GeographicMapImagery"; }; Object.defineProperty(GeographicMapImageryDescription.prototype, "type", { get: function () { return this.get_type(); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicMapImageryDescription.prototype, "windowRect", { get: function () { return this.k; }, set: function (a) { this.k = a; this.j("WindowRect"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicMapImageryDescription.prototype, "referer", { get: function () { return this.u; }, set: function (a) { this.u = a; this.j("Referer"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicMapImageryDescription.prototype, "isHorizontalWrappingEnabled", { get: function () { return this.m; }, set: function (a) { this.m = a; this.j("IsHorizontalWrappingEnabled"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicMapImageryDescription.prototype, "userAgent", { get: function () { return this.v; }, set: function (a) { this.v = a; this.j("UserAgent"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicMapImageryDescription.prototype, "opacity", { get: function () { return this.o; }, set: function (a) { this.o = a; this.j("Opacity"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicMapImageryDescription.prototype, "imageTilesReadyRef", { get: function () { return this.t; }, set: function (a) { this.t = a; this.j("ImageTilesReadyRef"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicMapImageryDescription.prototype, "imagesChangedRef", { get: function () { return this.s; }, set: function (a) { this.s = a; this.j("ImagesChangedRef"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicMapImageryDescription.prototype, "cancellingImageRef", { get: function () { return this.q; }, set: function (a) { this.q = a; this.j("CancellingImageRef"); }, enumerable: false, configurable: true }); Object.defineProperty(GeographicMapImageryDescription.prototype, "downloadingImageRef", { get: function () { return this.r; }, set: function (a) { this.r = a; this.j("DownloadingImageRef"); }, enumerable: false, configurable: true }); GeographicMapImageryDescription.$t = markType(GeographicMapImageryDescription, 'GeographicMapImageryDescription', Description.$); return GeographicMapImageryDescription; }(Description)); export { GeographicMapImageryDescription };