@quartic/bokehjs
Version:
Interactive, novel data visualization
21 lines (20 loc) • 1.05 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var extend = function (child, parent) { for (var key in parent) {
if (hasProp.call(parent, key))
child[key] = parent[key];
} function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; }, hasProp = {}.hasOwnProperty;
var mercator_tile_source_1 = require("./mercator_tile_source");
exports.TMSTileSource = (function (superClass) {
extend(TMSTileSource, superClass);
function TMSTileSource() {
return TMSTileSource.__super__.constructor.apply(this, arguments);
}
TMSTileSource.prototype.type = 'TMSTileSource';
TMSTileSource.prototype.get_image_url = function (x, y, z) {
var image_url;
image_url = this.string_lookup_replace(this.url, this.extra_url_vars);
return image_url.replace("{X}", x).replace('{Y}', y).replace("{Z}", z);
};
return TMSTileSource;
})(mercator_tile_source_1.MercatorTileSource);