UNPKG

@quartic/bokehjs

Version:

Interactive, novel data visualization

27 lines (19 loc) 1 kB
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; import { MercatorTileSource } from './mercator_tile_source'; export var WMTSTileSource = (function(superClass) { extend(WMTSTileSource, superClass); function WMTSTileSource() { return WMTSTileSource.__super__.constructor.apply(this, arguments); } WMTSTileSource.prototype.type = 'WMTSTileSource'; WMTSTileSource.prototype.get_image_url = function(x, y, z) { var image_url, ref; image_url = this.string_lookup_replace(this.url, this.extra_url_vars); ref = this.tms_to_wmts(x, y, z), x = ref[0], y = ref[1], z = ref[2]; return image_url.replace("{X}", x).replace('{Y}', y).replace("{Z}", z); }; return WMTSTileSource; })(MercatorTileSource);