UNPKG

igniteui-react-charts

Version:

Ignite UI React charting components for building rich data visualizations using TypeScript APIs.

45 lines (44 loc) 1.59 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 { Base, markType } from "igniteui-react-core"; import { ITileZoomTileInfo_$type } from "./ITileZoomTileInfo"; /** * @hidden */ export let TileZoomTileInfo = /*@__PURE__*/ (() => { class TileZoomTileInfo extends Base { constructor() { super(...arguments); this._zoomLevel = 0; this._xPosition = 0; this._yPosition = 0; } get zoomLevel() { return this._zoomLevel; } set zoomLevel(a) { this._zoomLevel = a; } get xPosition() { return this._xPosition; } set xPosition(a) { this._xPosition = a; } get yPosition() { return this._yPosition; } set yPosition(a) { this._yPosition = a; } toString() { return this.zoomLevel + "_" + this.xPosition + "_" + this.yPosition; } } TileZoomTileInfo.$t = /*@__PURE__*/ markType(TileZoomTileInfo, 'TileZoomTileInfo', Base.$, [ITileZoomTileInfo_$type]); return TileZoomTileInfo; })();