igniteui-react-core
Version:
Ignite UI React Core.
47 lines (46 loc) • 1.98 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 { Uri } from "./Uri";
import { stringReplace, stringIsNullOrEmpty, stringStartsWith } from "./string";
/**
* @hidden
*/
export let OpenStreetMapTileSource = /*@__PURE__*/ (() => {
class OpenStreetMapTileSource extends MapTileSource {
constructor() {
super(134217728, 134217728, 256, 256, 0);
this.z = "tile.openstreetmap.org/{Z}/{X}/{Y}.png";
this.setTilePathUrl(this.z);
}
x(a, b, c, d) {
let e = a - 8;
if (e > 0) {
let f = this.z;
f = stringReplace(f, "{Z}", e.toString());
f = stringReplace(f, "{X}", b.toString());
f = stringReplace(f, "{Y}", c.toString());
d.add(new Uri(0, f));
}
}
setTilePathUrl(a) {
if (!stringIsNullOrEmpty(a)) {
if (stringStartsWith(a, "http://") || stringStartsWith(a, "https://")) {
this.z = a;
}
else {
let b = "http://";
b = (('https:' == document.location.protocol ? 'https://' : 'http://'));
this.z = b + a;
}
}
}
}
OpenStreetMapTileSource.$t = /*@__PURE__*/ markType(OpenStreetMapTileSource, 'OpenStreetMapTileSource', MapTileSource.$);
return OpenStreetMapTileSource;
})();