UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

136 lines (135 loc) 4.09 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 { SeriesViewerDescription } from "./SeriesViewerDescription"; import { markType } from "./type"; /** * @hidden */ export let GeographicMapDescription = /*@__PURE__*/ (() => { class GeographicMapDescription extends SeriesViewerDescription { constructor() { super(); this.jz = false; this.kb = null; this.jw = false; this.j8 = null; this.jy = false; this.jx = false; this.jt = null; this.js = null; this.jq = null; this.j5 = 0; this.j4 = 0; this.ka = null; this.kc = null; this.j9 = null; } get_type() { return "GeographicMap"; } get zoomable() { return this.jz; } set zoomable(a) { this.jz = a; this.j("Zoomable"); } get resizeBehavior() { return this.kb; } set resizeBehavior(a) { this.kb = a; this.j("ResizeBehavior"); } get isHorizontalWrappingEnabled() { return this.jw; } set isHorizontalWrappingEnabled(a) { this.jw = a; this.j("IsHorizontalWrappingEnabled"); } get backgroundTilingMode() { return this.j8; } set backgroundTilingMode(a) { this.j8 = a; this.j("BackgroundTilingMode"); } get useWorldRectForZoomBounds() { return this.jy; } set useWorldRectForZoomBounds(a) { this.jy = a; this.j("UseWorldRectForZoomBounds"); } get suppressZoomResetOnWorldRectChange() { return this.jx; } set suppressZoomResetOnWorldRectChange(a) { this.jx = a; this.j("SuppressZoomResetOnWorldRectChange"); } get worldRect() { return this.jt; } set worldRect(a) { this.jt = a; this.j("WorldRect"); } get actualWorldRect() { return this.js; } set actualWorldRect(a) { this.js = a; this.j("ActualWorldRect"); } get backgroundContent() { return this.jq; } set backgroundContent(a) { this.jq = a; this.j("BackgroundContent"); } get windowScale() { return this.j5; } set windowScale(a) { this.j5 = a; this.j("WindowScale"); } get actualWindowScale() { return this.j4; } set actualWindowScale(a) { this.j4 = a; this.j("ActualWindowScale"); } get imageTilesReadyRef() { return this.ka; } set imageTilesReadyRef(a) { this.ka = a; this.j("ImageTilesReadyRef"); } get width() { return this.kc; } set width(a) { this.kc = a; this.j("Width"); } get height() { return this.j9; } set height(a) { this.j9 = a; this.j("Height"); } } GeographicMapDescription.$t = markType(GeographicMapDescription, 'GeographicMapDescription', SeriesViewerDescription.$); return GeographicMapDescription; })();