mirror of
https://github.com/FoggedLens/iD.git
synced 2026-03-09 20:55:58 +00:00
71 lines
2.1 KiB
JavaScript
71 lines
2.1 KiB
JavaScript
iD.Background = function() {
|
|
var template = 'http://ecn.t{t}.tiles.virtualearth.net/tiles/a{u}.jpeg?g=587&mkt=en-gb&n=z',
|
|
tile = d3.geo.tile(),
|
|
projection;
|
|
|
|
// derive the url of a 'quadkey' style tile from a coordinate object
|
|
function tileUrl(coord) {
|
|
var u = '';
|
|
for (var zoom = coord[2]; zoom > 0; zoom--) {
|
|
var byte = 0;
|
|
var mask = 1 << (zoom - 1);
|
|
if ((coord[0] & mask) !== 0) byte++;
|
|
if ((coord[1] & mask) !== 0) byte += 2;
|
|
u += byte.toString();
|
|
}
|
|
// distribute requests against multiple domains
|
|
var t = coord[2] % 5;
|
|
return template
|
|
.replace('{t}', t)
|
|
.replace('{u}', u)
|
|
.replace('{x}', coord[0])
|
|
.replace('{y}', coord[1])
|
|
.replace('{z}', coord[2]);
|
|
}
|
|
|
|
// derive the tiles onscreen, remove those offscreen and position tiles
|
|
// correctly for the currentstate of `projection`
|
|
function background() {
|
|
var tiles = tile
|
|
.scale(projection.scale())
|
|
.translate(projection.translate())();
|
|
|
|
var image = this
|
|
.attr("transform", function() {
|
|
return "scale(" + tiles.scale + ")translate(" + tiles.translate + ")";
|
|
})
|
|
.selectAll("image")
|
|
.data(tiles, function(d) { return [d.join(), template].join(); });
|
|
|
|
image.exit()
|
|
.remove();
|
|
|
|
image.enter().append("image")
|
|
.attr("xlink:href", tileUrl)
|
|
.attr("width", 1)
|
|
.attr("height", 1)
|
|
.attr("x", function(d) { return d[0]; })
|
|
.attr("y", function(d) { return d[1]; });
|
|
}
|
|
|
|
background.projection = function(p) {
|
|
if (!arguments.length) return projection;
|
|
projection = p;
|
|
return background;
|
|
};
|
|
|
|
background.size = function(size) {
|
|
if (!arguments.length) return tile.size();
|
|
tile.size(size);
|
|
return background;
|
|
};
|
|
|
|
background.template = function(x) {
|
|
if (!arguments.length) return template;
|
|
template = x;
|
|
return background;
|
|
};
|
|
|
|
return background;
|
|
};
|