igniteui-react-core
Version:
Ignite UI React Core.
49 lines (48 loc) • 2.12 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 { Uri } from "./Uri";
import { stringReplace, stringIsNullOrEmpty, stringStartsWith } from "./string";
/**
* @hidden
*/
var OpenStreetMapTileSource = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(OpenStreetMapTileSource, _super);
function OpenStreetMapTileSource() {
var _this = _super.call(this, 134217728, 134217728, 256, 256, 0) || this;
_this.z = "tile.openstreetmap.org/{Z}/{X}/{Y}.png";
_this.setTilePathUrl(_this.z);
return _this;
}
OpenStreetMapTileSource.prototype.x = function (a, b, c, d) {
var e = a - 8;
if (e > 0) {
var 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));
}
};
OpenStreetMapTileSource.prototype.setTilePathUrl = function (a) {
if (!stringIsNullOrEmpty(a)) {
if (stringStartsWith(a, "http://") || stringStartsWith(a, "https://")) {
this.z = a;
}
else {
var b = "http://";
b = (('https:' == document.location.protocol ? 'https://' : 'http://'));
this.z = b + a;
}
}
};
OpenStreetMapTileSource.$t = markType(OpenStreetMapTileSource, 'OpenStreetMapTileSource', MapTileSource.$);
return OpenStreetMapTileSource;
}(MapTileSource));
export { OpenStreetMapTileSource };