This repository has been archived on 2024-05-11. You can view files and clone it, but cannot push or open issues or pull requests.
meshviewer/lib/map.js

252 lines
6.8 KiB
JavaScript
Raw Normal View History

2017-12-25 15:12:44 +00:00
define(['map/clientlayer', 'map/labellayer', 'map/button', 'leaflet', 'map/activearea'],
function (ClientLayer, LabelLayer, Button, L) {
'use strict';
2016-05-27 21:59:01 +00:00
var options = {
worldCopyJump: true,
zoomControl: true,
minZoom: 0
};
2015-04-04 17:08:28 +00:00
return function (linkScale, sidebar, buttons) {
var self = this;
var savedView;
2015-03-24 23:54:00 +00:00
var map;
var layerControl;
var baseLayers = {};
2015-04-04 17:08:28 +00:00
function saveView() {
savedView = {
center: map.getCenter(),
zoom: map.getZoom()
};
}
function contextMenuOpenLayerMenu() {
document.querySelector('.leaflet-control-layers').classList.add('leaflet-control-layers-expanded');
}
2018-08-03 18:08:08 +00:00
function mapActiveArea() {
map.setActiveArea({
position: 'absolute',
left: sidebar.getWidth() + 'px',
right: 0,
top: 0,
bottom: 0
});
}
2017-12-25 15:12:44 +00:00
function setActiveArea() {
2018-08-03 18:08:08 +00:00
setTimeout(mapActiveArea, 300);
2017-12-25 15:12:44 +00:00
}
var el = document.createElement('div');
el.classList.add('map');
2015-03-24 23:54:00 +00:00
map = L.map(el, options);
2018-08-03 18:08:08 +00:00
mapActiveArea();
2017-12-25 15:12:44 +00:00
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,
2017-10-29 19:52:17 +00:00
'layer': L.tileLayer(d.url.replace('{retina}', L.Browser.retina ? '@2x' : ''), d.config)
};
});
2015-07-07 14:36:19 +00:00
2016-12-28 03:21:55 +00:00
map.addLayer(layers[0].layer);
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
var button = new Button(map, buttons);
map.on('locationfound', button.locationFound);
map.on('locationerror', button.locationError);
map.on('dragend', saveView);
map.on('contextmenu', contextMenuOpenLayerMenu);
2015-04-04 17:08:28 +00:00
if (config.geo) {
[].forEach.call(config.geo, function (geo) {
geo.json().then(function (result) {
if (result) {
L.geoJSON(result, geo.option).addTo(map);
}
});
});
}
button.init();
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 labelLayer = new LabelLayer({ minZoom: config.labelZoom });
labelLayer.addTo(map);
labelLayer.setZIndex(6);
2017-12-25 15:12:44 +00:00
sidebar.button.addEventListener('visibility', setActiveArea);
map.on('zoom', function () {
clientLayer.redraw();
labelLayer.redraw();
});
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;
labelLayer.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';
labelLayer.updateLayer();
}
if (e.layer.options.mode) {
var newStyle = document.querySelector('.css-mode.' + e.layer.options.mode);
newStyle.media = '';
newStyle.appendChild(document.createTextNode(''));
labelLayer.updateLayer();
}
});
2017-10-21 00:06:42 +00:00
map.on('load', function () {
2017-11-02 21:38:22 +00:00
var inputs = document.querySelectorAll('.leaflet-control-layers-selector');
[].forEach.call(inputs, function (input) {
2017-10-21 00:06:42 +00:00
input.setAttribute('role', 'radiogroup');
input.setAttribute('aria-label', input.nextSibling.innerHTML.trim());
});
});
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
}
2017-03-05 11:29:21 +00:00
function setView(bounds, zoom) {
2017-12-25 15:12:44 +00:00
map.fitBounds(bounds, { maxZoom: (zoom ? zoom : config.nodeZoom) });
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) {
if (highlight.type === 'node' && nodeDict[highlight.o.node_id]) {
m = nodeDict[highlight.o.node_id];
2017-11-05 17:23:40 +00:00
m.setStyle(config.map.highlightNode);
2017-02-12 23:31:31 +00:00
} else if (highlight.type === 'link' && linkDict[highlight.o.id]) {
m = linkDict[highlight.o.id];
2017-11-05 17:23:40 +00:00
m.setStyle(config.map.highlightLink);
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 {
2016-12-28 03:21:55 +00:00
setView(config.fixedCenter);
}
}
2015-04-17 20:10:47 +00:00
}
self.setData = function setData(data) {
nodeDict = {};
linkDict = {};
clientLayer.setData(data);
labelLayer.setData(data, map, nodeDict, linkDict, linkScale);
2015-03-29 14:14:10 +00:00
updateView(true);
};
2015-04-16 23:02:56 +00:00
self.resetView = function resetView() {
button.disableTracking();
highlight = undefined;
updateView();
};
2015-03-29 14:14:10 +00:00
2017-03-05 11:29:21 +00:00
self.gotoNode = function gotoNode(d) {
button.disableTracking();
highlight = { type: 'node', o: d };
2017-03-05 11:29:21 +00:00
updateView();
};
2015-03-25 00:16:15 +00:00
2017-03-05 11:29:21 +00:00
self.gotoLink = function gotoLink(d) {
button.disableTracking();
highlight = { type: 'link', o: d[0] };
2017-03-05 11:29:21 +00:00
updateView();
};
2015-03-24 23:54:00 +00:00
2017-03-05 11:29:21 +00:00
self.gotoLocation = function gotoLocation(d) {
button.disableTracking();
2017-03-05 11:29:21 +00:00
map.setView([d.lat, d.lng], d.zoom);
};
self.destroy = function destroy() {
button.clearButtons();
2017-12-25 15:12:44 +00:00
sidebar.button.removeEventListener('visibility', setActiveArea);
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;
};
});