igniteui-react-core
Version:
Ignite UI React Core.
37 lines (36 loc) • 1.46 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 { MapTileSource } from "./MapTileSource";
import { markType } from "./type";
import { GetTileImageUriArgs } from "./GetTileImageUriArgs";
import { Uri } from "./Uri";
/**
* @hidden
*/
export let CustomMapTileSource = /*@__PURE__*/ (() => {
class CustomMapTileSource extends MapTileSource {
constructor(a, b, c, d, e) {
super(a, b, c, d, e);
this.getTileImageUri = null;
}
x(a, b, c, d) {
let e = new GetTileImageUriArgs(a, b, c);
this.aa(e);
if (e.tileImageUri != null) {
let f = new Uri(0, e.tileImageUri);
d.add(f);
}
}
aa(a) {
if (this.getTileImageUri != null) {
this.getTileImageUri(this, a);
}
}
}
CustomMapTileSource.$t = /*@__PURE__*/ markType(CustomMapTileSource, 'CustomMapTileSource', MapTileSource.$);
return CustomMapTileSource;
})();