UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

72 lines (71 loc) 2.31 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 { GeographicMapImageryDescription } from "./GeographicMapImageryDescription"; import { markType } from "./type"; /** * @hidden */ export let AzureMapsImageryDescription = /*@__PURE__*/ (() => { class AzureMapsImageryDescription extends GeographicMapImageryDescription { constructor() { super(); this.ah = null; this.af = null; this.ag = null; this.ai = null; this.aj = null; this.ad = new Date(); } get_type() { return "AzureMapsImagery"; } get cultureName() { return this.ah; } set cultureName(a) { this.ah = a; this.j("CultureName"); } get apiKey() { return this.af; } set apiKey(a) { this.af = a; this.j("ApiKey"); } get apiVersion() { return this.ag; } set apiVersion(a) { this.ag = a; this.j("ApiVersion"); } get imageryStyle() { return this.ai; } set imageryStyle(a) { this.ai = a; this.j("ImageryStyle"); } get localizedView() { return this.aj; } set localizedView(a) { this.aj = a; this.j("LocalizedView"); } get timestamp() { return this.ad; } set timestamp(a) { this.ad = a; this.j("Timestamp"); } } AzureMapsImageryDescription.$t = markType(AzureMapsImageryDescription, 'AzureMapsImageryDescription', GeographicMapImageryDescription.$); return AzureMapsImageryDescription; })();