UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

158 lines (157 loc) 5.21 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 { GeographicMapImageryDescription } from "./GeographicMapImageryDescription"; import { markType } from "./type"; /** * @hidden */ var BingMapsMapImageryDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(BingMapsMapImageryDescription, _super); function BingMapsMapImageryDescription() { var _this = _super.call(this) || this; _this.ai = false; _this.ah = false; _this.ar = null; _this.am = null; _this.ae = null; _this.ad = null; _this.ao = null; _this.al = null; _this.ap = null; _this.an = null; _this.aq = null; return _this; } BingMapsMapImageryDescription.prototype.get_type = function () { return "BingMapsMapImagery"; }; Object.defineProperty(BingMapsMapImageryDescription.prototype, "isInitialized", { get: function () { return this.ai; }, set: function (a) { this.ai = a; this.j("IsInitialized"); }, enumerable: false, configurable: true }); Object.defineProperty(BingMapsMapImageryDescription.prototype, "isDeferredLoad", { get: function () { return this.ah; }, set: function (a) { this.ah = a; this.j("IsDeferredLoad"); }, enumerable: false, configurable: true }); Object.defineProperty(BingMapsMapImageryDescription.prototype, "tilePath", { get: function () { return this.ar; }, set: function (a) { this.ar = a; this.j("TilePath"); }, enumerable: false, configurable: true }); Object.defineProperty(BingMapsMapImageryDescription.prototype, "actualTilePath", { get: function () { return this.am; }, set: function (a) { this.am = a; this.j("ActualTilePath"); }, enumerable: false, configurable: true }); Object.defineProperty(BingMapsMapImageryDescription.prototype, "subDomains", { get: function () { return this.ae; }, set: function (a) { this.ae = a; this.j("SubDomains"); }, enumerable: false, configurable: true }); Object.defineProperty(BingMapsMapImageryDescription.prototype, "actualSubDomains", { get: function () { return this.ad; }, set: function (a) { this.ad = a; this.j("ActualSubDomains"); }, enumerable: false, configurable: true }); Object.defineProperty(BingMapsMapImageryDescription.prototype, "bingImageryRestUri", { get: function () { return this.ao; }, set: function (a) { this.ao = a; this.j("BingImageryRestUri"); }, enumerable: false, configurable: true }); Object.defineProperty(BingMapsMapImageryDescription.prototype, "actualBingImageryRestUri", { get: function () { return this.al; }, set: function (a) { this.al = a; this.j("ActualBingImageryRestUri"); }, enumerable: false, configurable: true }); Object.defineProperty(BingMapsMapImageryDescription.prototype, "cultureName", { get: function () { return this.ap; }, set: function (a) { this.ap = a; this.j("CultureName"); }, enumerable: false, configurable: true }); Object.defineProperty(BingMapsMapImageryDescription.prototype, "apiKey", { get: function () { return this.an; }, set: function (a) { this.an = a; this.j("ApiKey"); }, enumerable: false, configurable: true }); Object.defineProperty(BingMapsMapImageryDescription.prototype, "imageryStyle", { get: function () { return this.aq; }, set: function (a) { this.aq = a; this.j("ImageryStyle"); }, enumerable: false, configurable: true }); BingMapsMapImageryDescription.$t = markType(BingMapsMapImageryDescription, 'BingMapsMapImageryDescription', GeographicMapImageryDescription.$); return BingMapsMapImageryDescription; }(GeographicMapImageryDescription)); export { BingMapsMapImageryDescription };