UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

98 lines (97 loc) 3.38 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 AzureMapsImageryDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(AzureMapsImageryDescription, _super); function AzureMapsImageryDescription() { var _this = _super.call(this) || this; _this.ah = null; _this.af = null; _this.ag = null; _this.ai = null; _this.aj = null; _this.ad = new Date(); return _this; } AzureMapsImageryDescription.prototype.get_type = function () { return "AzureMapsImagery"; }; Object.defineProperty(AzureMapsImageryDescription.prototype, "cultureName", { get: function () { return this.ah; }, set: function (a) { this.ah = a; this.j("CultureName"); }, enumerable: false, configurable: true }); Object.defineProperty(AzureMapsImageryDescription.prototype, "apiKey", { get: function () { return this.af; }, set: function (a) { this.af = a; this.j("ApiKey"); }, enumerable: false, configurable: true }); Object.defineProperty(AzureMapsImageryDescription.prototype, "apiVersion", { get: function () { return this.ag; }, set: function (a) { this.ag = a; this.j("ApiVersion"); }, enumerable: false, configurable: true }); Object.defineProperty(AzureMapsImageryDescription.prototype, "imageryStyle", { get: function () { return this.ai; }, set: function (a) { this.ai = a; this.j("ImageryStyle"); }, enumerable: false, configurable: true }); Object.defineProperty(AzureMapsImageryDescription.prototype, "localizedView", { get: function () { return this.aj; }, set: function (a) { this.aj = a; this.j("LocalizedView"); }, enumerable: false, configurable: true }); Object.defineProperty(AzureMapsImageryDescription.prototype, "timestamp", { get: function () { return this.ad; }, set: function (a) { this.ad = a; this.j("Timestamp"); }, enumerable: false, configurable: true }); AzureMapsImageryDescription.$t = markType(AzureMapsImageryDescription, 'AzureMapsImageryDescription', GeographicMapImageryDescription.$); return AzureMapsImageryDescription; }(GeographicMapImageryDescription)); export { AzureMapsImageryDescription };