meshviewer/lib/map.js

515 lines
14 KiB
JavaScript
Raw Normal View History

2017-01-28 14:33:13 +00:00
define(['map/clientlayer', 'map/labelslayer',
'leaflet', 'moment', 'locationmarker', 'rbush', 'helper',
'leaflet.label'],
2016-05-26 16:39:26 +00:00
function (ClientLayer, LabelsLayer, L, moment, LocationMarker, rbush, helper) {
'use strict';
2016-05-27 21:59:01 +00:00
var options = {
worldCopyJump: true,
2017-02-26 15:09:23 +00:00
zoomControl: true
};
2015-04-04 17:08:28 +00:00
var ButtonBase = L.Control.extend({
options: {
position: 'bottomright'
},
2015-04-04 17:08:28 +00:00
active: false,
button: undefined,
2015-04-04 17:08:28 +00:00
initialize: function (f, o) {
L.Util.setOptions(this, o);
this.f = f;
},
2015-04-04 17:08:28 +00:00
update: function () {
this.button.classList.toggle('active', this.active);
},
set: function (v) {
this.active = v;
this.update();
}
});
var LocateButton = ButtonBase.extend({
onAdd: function () {
var button = L.DomUtil.create('button', 'ion-locate shadow');
2017-02-02 00:31:57 +00:00
button.setAttribute('data-tooltip', _.t('button.tracking'));
L.DomEvent.disableClickPropagation(button);
L.DomEvent.addListener(button, 'click', this.onClick, this);
2015-04-04 17:08:28 +00:00
this.button = button;
2015-04-04 17:08:28 +00:00
return button;
},
2015-04-04 17:08:28 +00:00
onClick: function () {
this.f(!this.active);
}
});
2015-04-04 17:08:28 +00:00
var CoordsPickerButton = ButtonBase.extend({
2015-11-09 09:01:20 +00:00
onAdd: function () {
var button = L.DomUtil.create('button', 'ion-pin shadow');
2017-02-02 00:31:57 +00:00
button.setAttribute('data-tooltip', _.t('button.location'));
2015-11-09 09:01:20 +00:00
2015-12-30 07:21:46 +00:00
// Click propagation isn't disabled as this causes problems with the
// location picking mode; instead propagation is stopped in onClick().
L.DomEvent.addListener(button, 'click', this.onClick, this);
2015-11-09 09:01:20 +00:00
this.button = button;
2015-11-09 09:01:20 +00:00
return button;
2015-11-09 09:01:20 +00:00
},
2015-12-30 07:21:46 +00:00
onClick: function (e) {
L.DomEvent.stopPropagation(e);
this.f(!this.active);
2015-11-09 09:01:20 +00:00
}
});
2015-11-09 09:01:20 +00:00
2015-04-17 20:10:47 +00:00
function mkMarker(dict, iconFunc, router) {
return function (d) {
var m = L.circleMarker([d.nodeinfo.location.latitude, d.nodeinfo.location.longitude], iconFunc(d));
2015-03-24 23:54:00 +00:00
m.resetStyle = function resetStyle() {
m.setStyle(iconFunc(d));
};
2015-03-25 01:15:17 +00:00
m.on('click', router.node(d));
m.bindLabel(d.nodeinfo.hostname);
2015-03-24 23:54:00 +00:00
dict[d.nodeinfo.node_id] = m;
2015-03-24 23:54:00 +00:00
return m;
};
2015-04-17 20:10:47 +00:00
}
2015-03-24 23:54:00 +00:00
2015-04-17 20:10:47 +00:00
function addLinksToMap(dict, linkScale, graph, router) {
graph = graph.filter(function (d) {
return 'distance' in d && d.type !== 'VPN';
});
2015-03-24 23:54:00 +00:00
return graph.map(function (d) {
var opts = {
2017-03-09 23:53:23 +00:00
color: d.type === 'Kabel' ? '#50B0F0' : linkScale(1 / d.tq),
weight: 4,
opacity: 0.5,
dashArray: 'none'
};
2015-03-24 23:54:00 +00:00
var line = L.polyline(d.latlngs, opts);
2015-03-24 23:54:00 +00:00
line.resetStyle = function resetStyle() {
line.setStyle(opts);
};
2015-03-25 01:15:17 +00:00
line.bindLabel(d.source.node.nodeinfo.hostname + ' ' + d.target.node.nodeinfo.hostname + '<br><strong>' + helper.showDistance(d) + ' / ' + helper.showTq(d) + '</strong>');
line.on('click', router.link(d));
2015-03-24 23:54:00 +00:00
dict[d.id] = line;
2015-03-24 23:54:00 +00:00
return line;
});
2015-04-17 20:10:47 +00:00
}
2015-03-24 23:54:00 +00:00
var iconOnline = {
color: '#1566A9',
fillColor: '#1566A9',
radius: 6,
fillOpacity: 0.5,
opacity: 0.5,
weight: 2,
className: 'stroke-first'
};
var iconOffline = {
color: '#D43E2A',
fillColor: '#D43E2A',
radius: 3,
fillOpacity: 0.5,
opacity: 0.5,
weight: 1,
className: 'stroke-first'
};
var iconLost = {
color: '#D43E2A',
fillColor: '#D43E2A',
radius: 4,
fillOpacity: 0.8,
opacity: 0.8,
weight: 1,
className: 'stroke-first'
};
var iconAlert = {
color: '#D43E2A',
fillColor: '#D43E2A',
radius: 5,
fillOpacity: 0.8,
opacity: 0.8,
weight: 2,
className: 'stroke-first'
};
var iconNew = { color: '#1566A9', fillColor: '#93E929', radius: 6, fillOpacity: 1.0, opacity: 0.5, weight: 2 };
2015-03-24 23:54:00 +00:00
return function (config, linkScale, sidebar, router, buttons) {
var self = this;
var groupOnline;
var groupOffline;
var groupNew;
var groupLost;
var groupLines;
var savedView;
2015-03-24 23:54:00 +00:00
var map;
var userLocation;
var layerControl;
var baseLayers = {};
2015-04-04 17:08:28 +00:00
2015-04-17 20:10:47 +00:00
var locateUserButton = new LocateButton(function (d) {
if (d) {
enableTracking();
} else {
disableTracking();
}
});
2015-04-04 17:08:28 +00:00
var mybuttons = [];
function addButton(button) {
var el = button.onAdd();
mybuttons.push(el);
buttons.appendChild(el);
}
function clearButtons() {
mybuttons.forEach(function (d) {
buttons.removeChild(d);
});
}
2015-11-09 09:01:20 +00:00
var showCoordsPickerButton = new CoordsPickerButton(function (d) {
if (d) {
enableCoords();
} else {
disableCoords();
}
});
2015-11-09 09:01:20 +00:00
function saveView() {
savedView = {
center: map.getCenter(),
zoom: map.getZoom()
};
}
2015-04-17 20:10:47 +00:00
function enableTracking() {
map.locate({
watch: true,
enableHighAccuracy: true,
setView: true
});
locateUserButton.set(true);
2015-04-17 20:10:47 +00:00
}
2015-04-04 17:08:28 +00:00
2015-04-17 20:10:47 +00:00
function disableTracking() {
map.stopLocate();
locationError();
locateUserButton.set(false);
2015-04-17 20:10:47 +00:00
}
2015-04-04 17:08:28 +00:00
2015-11-09 09:01:20 +00:00
function enableCoords() {
map.getContainer().classList.add('pick-coordinates');
map.on('click', showCoordinates);
showCoordsPickerButton.set(true);
2015-11-09 09:01:20 +00:00
}
function disableCoords() {
map.getContainer().classList.remove('pick-coordinates');
map.off('click', showCoordinates);
showCoordsPickerButton.set(false);
2015-11-09 09:01:20 +00:00
}
function showCoordinates(e) {
router.gotoLocation(e.latlng);
disableCoords();
2015-11-09 09:01:20 +00:00
}
2015-04-17 20:10:47 +00:00
function locationFound(e) {
if (!userLocation) {
userLocation = new LocationMarker(e.latlng).addTo(map);
}
2015-04-04 17:08:28 +00:00
userLocation.setLatLng(e.latlng);
userLocation.setAccuracy(e.accuracy);
2015-04-17 20:10:47 +00:00
}
2015-04-04 17:08:28 +00:00
2015-04-17 20:10:47 +00:00
function locationError() {
if (userLocation) {
map.removeLayer(userLocation);
userLocation = null;
2015-04-17 20:10:47 +00:00
}
2015-04-04 17:08:28 +00:00
}
function contextMenuOpenLayerMenu() {
document.querySelector('.leaflet-control-layers').classList.add('leaflet-control-layers-expanded');
}
var el = document.createElement('div');
el.classList.add('map');
2015-03-24 23:54:00 +00:00
map = L.map(el, options);
var now = new Date();
config.mapLayers.forEach(function (item, i) {
2017-01-07 02:09:14 +00:00
if ((typeof item.config.start === 'number' && item.config.start <= now.getHours()) || (typeof item.config.end === 'number' && item.config.end > now.getHours())) {
item.config.order = item.config.start * -1;
} else {
item.config.order = i;
}
});
config.mapLayers = config.mapLayers.sort(function (a, b) {
return a.config.order - b.config.order;
});
2015-03-24 23:54:00 +00:00
var layers = config.mapLayers.map(function (d) {
2015-07-07 14:36:19 +00:00
return {
'name': d.name,
'layer': 'url' in d ? L.tileLayer(d.url.replace('{retina}', L.Browser.retina ? '@2x' : ''), d.config) : console.warn('Missing map url')
};
});
2015-07-07 14:36:19 +00:00
layers[0].layer.addTo(map);
2015-07-07 14:36:19 +00:00
layers.forEach(function (d) {
baseLayers[d.name] = d.layer;
});
2015-03-24 23:54:00 +00:00
map.on('locationfound', locationFound);
map.on('locationerror', locationError);
map.on('dragend', saveView);
map.on('contextmenu', contextMenuOpenLayerMenu);
2015-04-04 17:08:28 +00:00
addButton(locateUserButton);
addButton(showCoordsPickerButton);
2015-04-04 17:08:28 +00:00
layerControl = L.control.layers(baseLayers, [], { position: 'bottomright' });
layerControl.addTo(map);
2015-04-15 20:25:22 +00:00
2017-02-26 15:09:23 +00:00
map.zoomControl.setPosition('topright');
var clientLayer = new ClientLayer({ minZoom: config.clientZoom });
clientLayer.addTo(map);
clientLayer.setZIndex(5);
2015-04-16 23:02:56 +00:00
var labelsLayer = new LabelsLayer({ minZoom: config.labelZoom });
labelsLayer.addTo(map);
labelsLayer.setZIndex(6);
2015-04-17 21:54:19 +00:00
map.on('baselayerchange', function (e) {
map.options.maxZoom = e.layer.options.maxZoom;
clientLayer.options.maxZoom = map.options.maxZoom;
labelsLayer.options.maxZoom = map.options.maxZoom;
if (map.getZoom() > map.options.maxZoom) {
map.setZoom(map.options.maxZoom);
}
2017-01-31 03:45:27 +00:00
var style = document.querySelector('.css-mode:not([media="not"])');
if (style && e.layer.options.mode !== '' && !style.classList.contains(e.layer.options.mode)) {
style.media = 'not';
2017-01-20 14:06:06 +00:00
labelsLayer.updateLayer();
}
if (e.layer.options.mode) {
var newStyle = document.querySelector('.css-mode.' + e.layer.options.mode);
newStyle.media = '';
newStyle.appendChild(document.createTextNode(''));
2017-01-31 03:45:27 +00:00
labelsLayer.updateLayer();
}
});
var nodeDict = {};
var linkDict = {};
var highlight;
2015-04-17 20:10:47 +00:00
function resetMarkerStyles(nodes, links) {
Object.keys(nodes).forEach(function (d) {
nodes[d].resetStyle();
});
Object.keys(links).forEach(function (d) {
links[d].resetStyle();
});
2015-04-17 20:10:47 +00:00
}
2015-04-17 20:10:47 +00:00
function setView(bounds) {
map.fitBounds(bounds, { paddingTopLeft: [sidebar(), 0], maxZoom: config.nodeZoom });
2015-04-17 20:10:47 +00:00
}
2015-04-17 20:10:47 +00:00
function resetZoom() {
setView(config.fixedCenter);
2015-04-17 20:10:47 +00:00
}
2015-04-17 20:10:47 +00:00
function goto(m) {
var bounds;
if ('getBounds' in m) {
bounds = m.getBounds();
} else {
bounds = L.latLngBounds([m.getLatLng()]);
}
setView(bounds);
return m;
2015-04-17 20:10:47 +00:00
}
2015-04-17 20:10:47 +00:00
function updateView(nopanzoom) {
resetMarkerStyles(nodeDict, linkDict);
var m;
if (highlight !== undefined) {
2017-02-12 23:31:31 +00:00
if (highlight.type === 'node' && nodeDict[highlight.o.nodeinfo.node_id]) {
m = nodeDict[highlight.o.nodeinfo.node_id];
2017-02-12 23:31:31 +00:00
m.setStyle({ color: 'orange', weight: 20, fillOpacity: 1, opacity: 0.7, className: 'stroke-first' });
} else if (highlight.type === 'link' && linkDict[highlight.o.id]) {
m = linkDict[highlight.o.id];
2017-02-12 23:31:31 +00:00
m.setStyle({ weight: 4, opacity: 1, dashArray: '5, 10' });
2015-04-17 20:10:47 +00:00
}
}
2015-04-17 20:10:47 +00:00
if (!nopanzoom) {
if (m) {
goto(m);
} else if (savedView) {
map.setView(savedView.center, savedView.zoom);
} else {
resetZoom();
}
}
2015-04-17 20:10:47 +00:00
}
function mapRTree(d) {
2017-02-12 23:31:31 +00:00
return {
minX: d.nodeinfo.location.latitude, minY: d.nodeinfo.location.longitude,
maxX: d.nodeinfo.location.latitude, maxY: d.nodeinfo.location.longitude,
node: d
};
}
self.setData = function setData(data) {
nodeDict = {};
linkDict = {};
if (groupOffline) {
groupOffline.clearLayers();
}
2015-03-24 23:54:00 +00:00
if (groupOnline) {
groupOnline.clearLayers();
}
2015-04-02 22:02:00 +00:00
if (groupNew) {
groupNew.clearLayers();
}
2015-04-02 22:02:00 +00:00
if (groupLost) {
groupLost.clearLayers();
}
2015-04-02 22:02:00 +00:00
if (groupLines) {
groupLines.clearLayers();
}
2015-04-02 22:02:00 +00:00
var lines = addLinksToMap(linkDict, linkScale, data.graph.links, router);
groupLines = L.featureGroup(lines).addTo(map);
2015-04-02 22:02:00 +00:00
2016-05-26 16:37:24 +00:00
var nodesOnline = helper.subtract(data.nodes.all.filter(helper.online), data.nodes.new);
var nodesOffline = helper.subtract(data.nodes.all.filter(helper.offline), data.nodes.lost);
2016-05-26 16:37:24 +00:00
var markersOnline = nodesOnline.filter(helper.hasLocation)
.map(mkMarker(nodeDict, function () {
return iconOnline;
}, router));
2015-03-24 23:54:00 +00:00
2016-05-26 16:37:24 +00:00
var markersOffline = nodesOffline.filter(helper.hasLocation)
.map(mkMarker(nodeDict, function () {
return iconOffline;
}, router));
2015-03-24 23:54:00 +00:00
2016-05-26 16:37:24 +00:00
var markersNew = data.nodes.new.filter(helper.hasLocation)
.map(mkMarker(nodeDict, function () {
return iconNew;
}, router));
2015-03-25 09:29:41 +00:00
2016-05-26 16:37:24 +00:00
var markersLost = data.nodes.lost.filter(helper.hasLocation)
2015-04-17 20:10:47 +00:00
.map(mkMarker(nodeDict, function (d) {
2017-02-01 23:47:54 +00:00
if (d.lastseen.isAfter(moment(data.now).subtract(config.maxAgeAlert, 'days'))) {
return iconAlert;
}
2015-03-24 23:54:00 +00:00
2017-02-01 23:47:54 +00:00
if (d.lastseen.isAfter(moment(data.now).subtract(config.maxAge, 'days'))) {
return iconLost;
}
return null;
}, router));
groupOffline = L.featureGroup(markersOffline).addTo(map);
groupLost = L.featureGroup(markersLost).addTo(map);
groupOnline = L.featureGroup(markersOnline).addTo(map);
groupNew = L.featureGroup(markersNew).addTo(map);
var rtreeOnlineAll = rbush(9);
2016-05-26 16:37:24 +00:00
rtreeOnlineAll.load(data.nodes.all.filter(helper.online).filter(helper.hasLocation).map(mapRTree));
clientLayer.setData(rtreeOnlineAll);
labelsLayer.setData({
2016-05-26 16:37:24 +00:00
online: nodesOnline.filter(helper.hasLocation),
offline: nodesOffline.filter(helper.hasLocation),
new: data.nodes.new.filter(helper.hasLocation),
lost: data.nodes.lost.filter(helper.hasLocation)
});
2015-03-29 14:14:10 +00:00
updateView(true);
};
2015-04-16 23:02:56 +00:00
self.resetView = function resetView() {
disableTracking();
highlight = undefined;
updateView();
};
2015-03-29 14:14:10 +00:00
self.gotoNode = function gotoNode(d, update) {
disableTracking();
highlight = { type: 'node', o: d };
updateView(update);
};
2015-03-25 00:16:15 +00:00
self.gotoLink = function gotoLink(d, update) {
disableTracking();
highlight = { type: 'link', o: d };
updateView(update);
};
2015-03-24 23:54:00 +00:00
self.gotoLocation = function gotoLocation() {
// ignore
};
self.destroy = function destroy() {
clearButtons();
map.remove();
2015-07-11 22:11:18 +00:00
if (el.parentNode) {
el.parentNode.removeChild(el);
}
};
2015-07-11 22:11:18 +00:00
self.render = function render(d) {
d.appendChild(el);
map.invalidateSize();
};
2015-03-24 23:54:00 +00:00
return self;
};
});