UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

88 lines (87 loc) 2.8 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 ArcGISOnlineMapImageryDescription = /*@__PURE__*/ (() => { class ArcGISOnlineMapImageryDescription extends GeographicMapImageryDescription { constructor() { super(); this.ah = null; this.al = null; this.ai = null; this.am = null; this.ad = false; this.af = 0; this.ak = null; this.aj = null; } get_type() { return "ArcGISOnlineMapImagery"; } get mapServerUri() { return this.ah; } set mapServerUri(a) { this.ah = a; this.j("MapServerUri"); } get userName() { return this.al; } set userName(a) { this.al = a; this.j("UserName"); } get password() { return this.ai; } set password(a) { this.ai = a; this.j("Password"); } get userToken() { return this.am; } set userToken(a) { this.am = a; this.j("UserToken"); } get isMapPublic() { return this.ad; } set isMapPublic(a) { this.ad = a; this.j("IsMapPublic"); } get defaultTokenTimeout() { return this.af; } set defaultTokenTimeout(a) { this.af = a; this.j("DefaultTokenTimeout"); } get tokenGenerationEndPoint() { return this.ak; } set tokenGenerationEndPoint(a) { this.ak = a; this.j("TokenGenerationEndPoint"); } get refererUri() { return this.aj; } set refererUri(a) { this.aj = a; this.j("RefererUri"); } } ArcGISOnlineMapImageryDescription.$t = markType(ArcGISOnlineMapImageryDescription, 'ArcGISOnlineMapImageryDescription', GeographicMapImageryDescription.$); return ArcGISOnlineMapImageryDescription; })();