meshviewer/lib/map/labelslayer.js

234 lines
6.8 KiB
JavaScript
Raw Normal View History

define(['leaflet', 'rbush', 'helper'],
function (L, rbush, helper) {
'use strict';
var labelLocations = [['left', 'middle', 0 / 8],
['center', 'top', 6 / 8],
['right', 'middle', 4 / 8],
['left', 'top', 7 / 8],
['left', 'ideographic', 1 / 8],
['right', 'top', 5 / 8],
['center', 'ideographic', 2 / 8],
['right', 'ideographic', 3 / 8]];
var labelShadow;
2017-02-08 22:32:17 +00:00
var bodyStyle = { fontFamily: 'sans-serif' };
var nodeRadius = 4;
2015-04-20 00:51:27 +00:00
var cFont = document.createElement('canvas').getContext('2d');
2015-04-20 00:51:27 +00:00
function measureText(font, text) {
cFont.font = font;
return cFont.measureText(text);
2015-04-20 00:51:27 +00:00
}
function mapRTree(d) {
2017-02-06 00:50:08 +00:00
var o = { minX: d.position.lat, minY: d.position.lng, maxX: d.position.lat, maxY: d.position.lng };
2015-04-20 00:51:27 +00:00
o.label = d;
2015-04-20 00:51:27 +00:00
return o;
2015-04-20 00:51:27 +00:00
}
function prepareLabel(fillStyle, fontSize, offset, stroke) {
2015-04-20 00:51:27 +00:00
return function (d) {
var font = fontSize + 'px ' + bodyStyle.fontFamily;
return {
position: L.latLng(d.nodeinfo.location.latitude, d.nodeinfo.location.longitude),
label: d.nodeinfo.hostname,
offset: offset,
fillStyle: fillStyle,
height: fontSize * 1.2,
font: font,
stroke: stroke,
width: measureText(font, d.nodeinfo.hostname).width
};
};
2015-04-20 00:51:27 +00:00
}
function calcOffset(offset, loc) {
return [offset * Math.cos(loc[2] * 2 * Math.PI),
-offset * Math.sin(loc[2] * 2 * Math.PI)];
2015-04-20 00:51:27 +00:00
}
function labelRect(p, offset, anchor, label, minZoom, maxZoom, z) {
var margin = 1 + 1.41 * (1 - (z - minZoom) / (maxZoom - minZoom));
var width = label.width * margin;
var height = label.height * margin;
var dx = {
left: 0,
right: -width,
center: -width / 2
};
2015-04-20 00:51:27 +00:00
var dy = {
top: 0,
ideographic: -height,
middle: -height / 2
};
2015-04-20 00:51:27 +00:00
var x = p.x + offset[0] + dx[anchor[0]];
var y = p.y + offset[1] + dy[anchor[1]];
2015-04-20 00:51:27 +00:00
2017-02-06 00:50:08 +00:00
return { minX: x, minY: y, maxX: x + width, maxY: y + height };
2015-04-20 00:51:27 +00:00
}
return L.TileLayer.Canvas.extend({
2015-04-20 00:51:27 +00:00
onAdd: function (map) {
L.TileLayer.Canvas.prototype.onAdd.call(this, map);
if (this.data) {
this.prepareLabels();
}
2015-04-20 00:51:27 +00:00
},
2015-04-17 21:54:19 +00:00
setData: function (d) {
this.data = d;
2017-01-20 14:06:06 +00:00
this.updateLayer();
2015-04-20 00:51:27 +00:00
},
2017-01-20 14:06:06 +00:00
updateLayer: function () {
if (this._map) {
this.prepareLabels();
}
},
2015-04-20 00:51:27 +00:00
prepareLabels: function () {
var d = this.data;
2015-04-20 00:51:27 +00:00
// label:
// - position (WGS84 coords)
// - offset (2D vector in pixels)
// - anchor (tuple, textAlignment, textBaseline)
// - minZoom (inclusive)
// - label (string)
// - color (string)
2017-02-08 22:32:17 +00:00
var labelsOnline = d.online.map(prepareLabel(null, 11, 8, true));
var labelsOffline = d.offline.map(prepareLabel('rgba(212, 62, 42, 0.9)', 9, 5, false));
var labelsNew = d.new.map(prepareLabel('rgba(48, 99, 20, 0.9)', 11, 8, true));
var labelsLost = d.lost.map(prepareLabel('rgba(212, 62, 42, 0.9)', 11, 8, true));
2015-04-20 00:51:27 +00:00
var labels = []
.concat(labelsNew)
.concat(labelsLost)
.concat(labelsOnline)
.concat(labelsOffline);
2015-04-20 00:51:27 +00:00
var minZoom = this.options.minZoom;
var maxZoom = this.options.maxZoom;
2015-04-20 00:51:27 +00:00
var trees = [];
2015-04-20 00:51:27 +00:00
var map = this._map;
2015-04-20 00:51:27 +00:00
function nodeToRect(z) {
return function (n) {
var p = map.project(n.position, z);
2017-02-06 00:50:08 +00:00
return { minX: p.x - nodeRadius, minY: p.y - nodeRadius, maxX: p.x + nodeRadius, maxY: p.y + nodeRadius };
};
2015-04-20 00:51:27 +00:00
}
for (var z = minZoom; z <= maxZoom; z++) {
trees[z] = rbush(9);
trees[z].load(labels.map(nodeToRect(z)));
2015-04-20 00:51:27 +00:00
}
labels = labels.map(function (n) {
2015-04-20 00:51:27 +00:00
var best = labelLocations.map(function (loc) {
var offset = calcOffset(n.offset, loc);
var i;
2015-04-20 00:51:27 +00:00
for (i = maxZoom; i >= minZoom; i--) {
var p = map.project(n.position, i);
var rect = labelRect(p, offset, loc, n, minZoom, maxZoom, i);
var candidates = trees[i].search(rect);
2015-04-20 00:51:27 +00:00
if (candidates.length > 0) {
break;
}
2015-04-20 00:51:27 +00:00
}
return { loc: loc, z: i + 1 };
}).filter(function (k) {
return k.z <= maxZoom;
2015-04-20 00:51:27 +00:00
}).sort(function (a, b) {
return a.z - b.z;
})[0];
2015-04-20 00:51:27 +00:00
if (best !== undefined) {
n.offset = calcOffset(n.offset, best.loc);
n.minZoom = best.z;
n.anchor = best.loc;
for (var i = maxZoom; i >= best.z; i--) {
var p = map.project(n.position, i);
var rect = labelRect(p, n.offset, best.loc, n, minZoom, maxZoom, i);
trees[i].insert(rect);
}
2015-04-20 00:51:27 +00:00
return n;
}
return undefined;
}).filter(function (n) {
return n !== undefined;
});
2015-04-20 00:51:27 +00:00
this.margin = 16;
2015-07-07 19:28:44 +00:00
if (labels.length > 0) {
this.margin += labels.map(function (n) {
return n.width;
}).sort().reverse()[0];
}
2015-04-20 00:51:27 +00:00
this.labels = rbush(9);
this.labels.load(labels.map(mapRTree));
2015-04-20 00:51:27 +00:00
this.redraw();
2015-04-17 21:54:19 +00:00
},
2015-04-20 00:51:27 +00:00
drawTile: function (canvas, tilePoint, zoom) {
if (!this.labels && zoom >= this.options.minZoom) {
return;
}
2015-04-17 21:54:19 +00:00
var tileSize = this.options.tileSize;
var s = tilePoint.multiplyBy(tileSize);
var map = this._map;
2017-02-08 22:32:17 +00:00
bodyStyle = window.getComputedStyle(document.querySelector('body'));
labelShadow = bodyStyle.backgroundColor.replace(/rgb/i, 'rgba').replace(/\)/i, ',0.7)');
2015-04-17 21:54:19 +00:00
function projectNodes(d) {
var p = map.project(d.label.position);
2015-04-17 21:54:19 +00:00
p.x -= s.x;
p.y -= s.y;
return { p: p, label: d.label };
2015-04-17 21:54:19 +00:00
}
var bbox = helper.getTileBBox(s, map, tileSize, this.margin);
var labels = this.labels.search(bbox).map(projectNodes);
var ctx = canvas.getContext('2d');
2015-04-17 21:54:19 +00:00
ctx.lineWidth = 5;
ctx.strokeStyle = labelShadow;
ctx.miterLimit = 2;
2015-04-17 21:54:19 +00:00
function drawLabel(d) {
ctx.font = d.label.font;
ctx.textAlign = d.label.anchor[0];
ctx.textBaseline = d.label.anchor[1];
2017-02-08 22:32:17 +00:00
ctx.fillStyle = d.label.fillStyle === null ? bodyStyle.color : d.label.fillStyle;
if (d.label.stroke) {
ctx.strokeText(d.label.label, d.p.x + d.label.offset[0], d.p.y + d.label.offset[1]);
}
ctx.fillText(d.label.label, d.p.x + d.label.offset[0], d.p.y + d.label.offset[1]);
2015-04-17 21:54:19 +00:00
}
2015-04-20 00:51:27 +00:00
labels.filter(function (d) {
return zoom >= d.label.minZoom;
}).forEach(drawLabel);
2015-04-17 21:54:19 +00:00
}
});
});