igniteui-react-core
Version:
Ignite UI React Core.
39 lines (38 loc) • 1.61 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 { MapTileSource } from "./MapTileSource";
import { markType } from "./type";
import { GetTileImageUriArgs } from "./GetTileImageUriArgs";
import { Uri } from "./Uri";
/**
* @hidden
*/
var CustomMapTileSource = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(CustomMapTileSource, _super);
function CustomMapTileSource(a, b, c, d, e) {
var _this = _super.call(this, a, b, c, d, e) || this;
_this.getTileImageUri = null;
return _this;
}
CustomMapTileSource.prototype.x = function (a, b, c, d) {
var e = new GetTileImageUriArgs(a, b, c);
this.aa(e);
if (e.tileImageUri != null) {
var f = new Uri(0, e.tileImageUri);
d.add(f);
}
};
CustomMapTileSource.prototype.aa = function (a) {
if (this.getTileImageUri != null) {
this.getTileImageUri(this, a);
}
};
CustomMapTileSource.$t = markType(CustomMapTileSource, 'CustomMapTileSource', MapTileSource.$);
return CustomMapTileSource;
}(MapTileSource));
export { CustomMapTileSource };