igniteui-react-core
Version:
Ignite UI React Core.
38 lines (37 loc) • 1.64 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 { GeographicMapImageryDescription } from "./GeographicMapImageryDescription";
import { markType } from "./type";
/**
* @hidden
*/
var CustomMapImageryDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(CustomMapImageryDescription, _super);
function CustomMapImageryDescription() {
var _this = _super.call(this) || this;
_this.ac = null;
return _this;
}
CustomMapImageryDescription.prototype.get_type = function () {
return "CustomMapImagery";
};
Object.defineProperty(CustomMapImageryDescription.prototype, "getTileImageUriRef", {
get: function () {
return this.ac;
},
set: function (a) {
this.ac = a;
this.g("GetTileImageUriRef");
},
enumerable: false,
configurable: true
});
CustomMapImageryDescription.$t = markType(CustomMapImageryDescription, 'CustomMapImageryDescription', GeographicMapImageryDescription.$);
return CustomMapImageryDescription;
}(GeographicMapImageryDescription));
export { CustomMapImageryDescription };