igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
194 lines (193 loc) • 6.2 kB
JavaScript
/*
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 { SeriesViewerDescription } from "./SeriesViewerDescription";
import { markType } from "./type";
/**
* @hidden
*/
var GeographicMapDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(GeographicMapDescription, _super);
function GeographicMapDescription() {
var _this = _super.call(this) || this;
_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;
return _this;
}
GeographicMapDescription.prototype.get_type = function () {
return "GeographicMap";
};
Object.defineProperty(GeographicMapDescription.prototype, "zoomable", {
get: function () {
return this.jz;
},
set: function (a) {
this.jz = a;
this.j("Zoomable");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicMapDescription.prototype, "resizeBehavior", {
get: function () {
return this.kb;
},
set: function (a) {
this.kb = a;
this.j("ResizeBehavior");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicMapDescription.prototype, "isHorizontalWrappingEnabled", {
get: function () {
return this.jw;
},
set: function (a) {
this.jw = a;
this.j("IsHorizontalWrappingEnabled");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicMapDescription.prototype, "backgroundTilingMode", {
get: function () {
return this.j8;
},
set: function (a) {
this.j8 = a;
this.j("BackgroundTilingMode");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicMapDescription.prototype, "useWorldRectForZoomBounds", {
get: function () {
return this.jy;
},
set: function (a) {
this.jy = a;
this.j("UseWorldRectForZoomBounds");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicMapDescription.prototype, "suppressZoomResetOnWorldRectChange", {
get: function () {
return this.jx;
},
set: function (a) {
this.jx = a;
this.j("SuppressZoomResetOnWorldRectChange");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicMapDescription.prototype, "worldRect", {
get: function () {
return this.jt;
},
set: function (a) {
this.jt = a;
this.j("WorldRect");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicMapDescription.prototype, "actualWorldRect", {
get: function () {
return this.js;
},
set: function (a) {
this.js = a;
this.j("ActualWorldRect");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicMapDescription.prototype, "backgroundContent", {
get: function () {
return this.jq;
},
set: function (a) {
this.jq = a;
this.j("BackgroundContent");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicMapDescription.prototype, "windowScale", {
get: function () {
return this.j5;
},
set: function (a) {
this.j5 = a;
this.j("WindowScale");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicMapDescription.prototype, "actualWindowScale", {
get: function () {
return this.j4;
},
set: function (a) {
this.j4 = a;
this.j("ActualWindowScale");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicMapDescription.prototype, "imageTilesReadyRef", {
get: function () {
return this.ka;
},
set: function (a) {
this.ka = a;
this.j("ImageTilesReadyRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicMapDescription.prototype, "width", {
get: function () {
return this.kc;
},
set: function (a) {
this.kc = a;
this.j("Width");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GeographicMapDescription.prototype, "height", {
get: function () {
return this.j9;
},
set: function (a) {
this.j9 = a;
this.j("Height");
},
enumerable: false,
configurable: true
});
GeographicMapDescription.$t = markType(GeographicMapDescription, 'GeographicMapDescription', SeriesViewerDescription.$);
return GeographicMapDescription;
}(SeriesViewerDescription));
export { GeographicMapDescription };