2015-04-17 23:54:19 +02:00
|
|
|
|
define(["map/clientlayer", "map/labelslayer",
|
2015-04-19 12:22:09 +02:00
|
|
|
|
"d3", "leaflet", "moment", "locationmarker", "rbush",
|
2015-04-17 22:27:24 +02:00
|
|
|
|
"leaflet.label", "leaflet.providers"],
|
2015-04-19 12:22:09 +02:00
|
|
|
|
function (ClientLayer, LabelsLayer, d3, L, moment, LocationMarker, rbush) {
|
2015-04-17 22:10:47 +02:00
|
|
|
|
var options = { worldCopyJump: true,
|
|
|
|
|
zoomControl: false
|
|
|
|
|
}
|
2015-04-04 19:08:28 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
var AddLayerButton = L.Control.extend({
|
|
|
|
|
options: {
|
|
|
|
|
position: "bottomright"
|
|
|
|
|
},
|
2015-04-12 03:24:46 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
initialize: function (f, options) {
|
|
|
|
|
L.Util.setOptions(this, options)
|
|
|
|
|
this.f = f
|
|
|
|
|
},
|
2015-04-12 03:24:46 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
onAdd: function () {
|
|
|
|
|
var button = L.DomUtil.create("button", "add-layer")
|
2015-04-12 03:24:46 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
L.DomEvent.disableClickPropagation(button)
|
|
|
|
|
L.DomEvent.addListener(button, "click", this.f, this)
|
2015-04-12 03:24:46 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
this.button = button
|
2015-04-12 03:24:46 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
return button
|
|
|
|
|
}
|
|
|
|
|
})
|
2015-04-12 03:24:46 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
var LocateButton = L.Control.extend({
|
|
|
|
|
options: {
|
|
|
|
|
position: "bottomright"
|
|
|
|
|
},
|
2015-04-04 19:08:28 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
active: false,
|
|
|
|
|
button: undefined,
|
2015-04-04 19:08:28 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
initialize: function (f, options) {
|
|
|
|
|
L.Util.setOptions(this, options)
|
|
|
|
|
this.f = f
|
|
|
|
|
},
|
2015-04-04 19:08:28 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
onAdd: function () {
|
|
|
|
|
var button = L.DomUtil.create("button", "locate-user")
|
2015-04-04 19:08:28 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
L.DomEvent.disableClickPropagation(button)
|
|
|
|
|
L.DomEvent.addListener(button, "click", this.onClick, this)
|
2015-04-04 19:08:28 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
this.button = button
|
2015-04-04 19:08:28 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
return button
|
|
|
|
|
},
|
2015-04-04 19:08:28 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
update: function() {
|
|
|
|
|
this.button.classList.toggle("active", this.active)
|
|
|
|
|
},
|
2015-04-04 19:08:28 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
set: function(v) {
|
|
|
|
|
this.active = v
|
|
|
|
|
this.update()
|
|
|
|
|
},
|
2015-04-04 19:08:28 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
onClick: function () {
|
|
|
|
|
this.f(!this.active)
|
|
|
|
|
}
|
|
|
|
|
})
|
2015-04-04 19:08:28 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02: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-25 00:54:00 +01:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
m.resetStyle = function () {
|
|
|
|
|
m.setStyle(iconFunc(d))
|
|
|
|
|
}
|
2015-03-25 02:15:17 +01:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
m.on("click", router.node(d))
|
|
|
|
|
m.bindLabel(d.nodeinfo.hostname)
|
2015-03-25 00:54:00 +01:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
dict[d.nodeinfo.node_id] = m
|
2015-03-25 00:54:00 +01:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
return m
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-03-25 00:54:00 +01:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
function addLinksToMap(dict, linkScale, graph, router) {
|
|
|
|
|
graph = graph.filter( function (d) {
|
|
|
|
|
return "distance" in d && !d.vpn
|
|
|
|
|
})
|
2015-03-25 00:54:00 +01:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
var lines = graph.map( function (d) {
|
|
|
|
|
var opts = { color: linkScale(d.tq).hex(),
|
|
|
|
|
weight: 4,
|
|
|
|
|
opacity: 0.5,
|
|
|
|
|
dashArray: "none"
|
|
|
|
|
}
|
2015-03-25 00:54:00 +01:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
var line = L.polyline(d.latlngs, opts)
|
2015-03-25 00:54:00 +01:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
line.resetStyle = function () {
|
|
|
|
|
line.setStyle(opts)
|
|
|
|
|
}
|
2015-03-25 02:15:17 +01:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
line.bindLabel(d.source.node.nodeinfo.hostname + " – " + d.target.node.nodeinfo.hostname + "<br><strong>" + showDistance(d) + " / " + showTq(d) + "</strong>")
|
|
|
|
|
line.on("click", router.link(d))
|
2015-03-25 00:54:00 +01:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
dict[d.id] = line
|
2015-03-25 00:54:00 +01:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
return line
|
|
|
|
|
})
|
2015-03-25 00:54:00 +01:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
return lines
|
|
|
|
|
}
|
2015-03-25 00:54:00 +01:00
|
|
|
|
|
2015-04-17 22:10:47 +02: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: 6, fillOpacity: 0.8, opacity: 0.8, weight: 1, className: "stroke-first" }
|
|
|
|
|
var iconAlert = { color: "#D43E2A", fillColor: "#D43E2A", radius: 6, fillOpacity: 0.8, opacity: 0.8, weight: 2, className: "stroke-first node-alert" }
|
|
|
|
|
var iconNew = { color: "#1566A9", fillColor: "#93E929", radius: 6, fillOpacity: 1.0, opacity: 0.5, weight: 2 }
|
2015-03-25 00:54:00 +01:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
return function (config, linkScale, sidebar, router) {
|
|
|
|
|
var self = this
|
|
|
|
|
var barycenter
|
|
|
|
|
var groupOnline, groupOffline, groupNew, groupLost, groupLines
|
2015-03-25 00:54:00 +01:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
var map, userLocation
|
|
|
|
|
var layerControl
|
|
|
|
|
var customLayers = new Set()
|
2015-04-04 19:08:28 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
var locateUserButton = new LocateButton(function (d) {
|
|
|
|
|
if (d)
|
|
|
|
|
enableTracking()
|
|
|
|
|
else
|
|
|
|
|
disableTracking()
|
|
|
|
|
})
|
2015-04-04 19:08:28 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
function enableTracking() {
|
|
|
|
|
map.locate({watch: true,
|
|
|
|
|
enableHighAccuracy: true,
|
|
|
|
|
setView: true
|
|
|
|
|
})
|
|
|
|
|
locateUserButton.set(true)
|
|
|
|
|
}
|
2015-04-04 19:08:28 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
function disableTracking() {
|
|
|
|
|
map.stopLocate()
|
|
|
|
|
locationError()
|
|
|
|
|
locateUserButton.set(false)
|
|
|
|
|
}
|
2015-04-04 19:08:28 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
function locationFound(e) {
|
|
|
|
|
if (!userLocation)
|
|
|
|
|
userLocation = new LocationMarker(e.latlng).addTo(map)
|
2015-04-04 19:08:28 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
userLocation.setLatLng(e.latlng)
|
|
|
|
|
userLocation.setAccuracy(e.accuracy)
|
|
|
|
|
}
|
2015-04-04 19:08:28 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
function locationError() {
|
|
|
|
|
if (userLocation) {
|
|
|
|
|
map.removeLayer(userLocation)
|
|
|
|
|
userLocation = null
|
|
|
|
|
}
|
2015-04-04 19:08:28 +02:00
|
|
|
|
}
|
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
function addLayer(layerName) {
|
|
|
|
|
if (customLayers.has(layerName))
|
|
|
|
|
return
|
2015-04-15 22:25:22 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
try {
|
|
|
|
|
var layer = L.tileLayer.provider(layerName)
|
|
|
|
|
layerControl.addBaseLayer(layer, layerName)
|
|
|
|
|
customLayers.add(layerName)
|
2015-04-15 22:25:22 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
if (!layerControl.added) {
|
|
|
|
|
layerControl.addTo(map)
|
|
|
|
|
layerControl.added = true
|
|
|
|
|
}
|
2015-04-15 22:25:22 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
if (localStorageTest())
|
|
|
|
|
localStorage.setItem("map/customLayers", JSON.stringify(Array.from(customLayers)))
|
|
|
|
|
} catch (e) {
|
|
|
|
|
return
|
|
|
|
|
}
|
2015-04-15 22:25:22 +02:00
|
|
|
|
}
|
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
var el = document.createElement("div")
|
|
|
|
|
el.classList.add("map")
|
|
|
|
|
self.div = el
|
2015-03-25 00:54:00 +01:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
map = L.map(el, options)
|
2015-03-25 00:54:00 +01:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
var baseLayer = L.tileLayer("https://otile{s}-s.mqcdn.com/tiles/1.0.0/osm/{z}/{x}/{y}.jpg", {
|
|
|
|
|
subdomains: "1234",
|
|
|
|
|
type: "osm",
|
|
|
|
|
attribution: "Tiles © <a href=\"https://www.mapquest.com/\" target=\"_blank\">MapQuest</a>, Data CC-BY-SA OpenStreetMap",
|
|
|
|
|
maxZoom: 18
|
|
|
|
|
}).addTo(map)
|
2015-03-25 00:54:00 +01:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
map.on("locationfound", locationFound)
|
|
|
|
|
map.on("locationerror", locationError)
|
2015-04-04 19:08:28 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
map.addControl(locateUserButton)
|
2015-04-04 19:08:28 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
map.addControl(new AddLayerButton(function () {
|
|
|
|
|
/*eslint no-alert:0*/
|
|
|
|
|
var layerName = prompt("Leaflet Provider:")
|
|
|
|
|
addLayer(layerName)
|
|
|
|
|
}))
|
2015-04-12 03:24:46 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
layerControl = L.control.layers({"MapQuest": baseLayer}, [], {position: "bottomright"})
|
2015-04-15 22:25:22 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
if (localStorageTest()) {
|
|
|
|
|
var layers = JSON.parse(localStorage.getItem("map/customLayers"))
|
2015-04-15 22:25:22 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
if (layers)
|
|
|
|
|
layers.forEach(addLayer)
|
|
|
|
|
}
|
2015-04-15 22:25:22 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
var clientLayer = new ClientLayer()
|
|
|
|
|
clientLayer.addTo(map)
|
|
|
|
|
clientLayer.setZIndex(5)
|
2015-04-17 01:02:56 +02:00
|
|
|
|
|
2015-04-17 23:54:19 +02:00
|
|
|
|
var labelsLayer = new LabelsLayer({minZoom: 15})
|
|
|
|
|
labelsLayer.addTo(map)
|
|
|
|
|
labelsLayer.setZIndex(6)
|
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
var nodeDict = {}
|
|
|
|
|
var linkDict = {}
|
|
|
|
|
var highlight
|
2015-04-06 11:58:02 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
function resetMarkerStyles(nodes, links) {
|
|
|
|
|
Object.keys(nodes).forEach( function (d) {
|
|
|
|
|
nodes[d].resetStyle()
|
|
|
|
|
})
|
2015-04-06 11:58:02 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
Object.keys(links).forEach( function (d) {
|
|
|
|
|
links[d].resetStyle()
|
|
|
|
|
})
|
|
|
|
|
}
|
2015-04-06 11:58:02 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
function setView(bounds) {
|
|
|
|
|
map.fitBounds(bounds, {paddingTopLeft: [sidebar.getWidth(), 0]})
|
|
|
|
|
}
|
2015-04-06 11:58:02 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
function resetZoom() {
|
|
|
|
|
setView(barycenter.getBounds())
|
|
|
|
|
}
|
2015-04-06 11:58:02 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
function goto(m) {
|
|
|
|
|
var bounds
|
2015-04-06 11:58:02 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
if ("getBounds" in m)
|
|
|
|
|
bounds = m.getBounds()
|
|
|
|
|
else
|
|
|
|
|
bounds = L.latLngBounds([m.getLatLng()])
|
2015-04-06 11:58:02 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
setView(bounds)
|
2015-04-06 11:58:02 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
return m
|
|
|
|
|
}
|
2015-04-06 11:58:02 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
function updateView(nopanzoom) {
|
|
|
|
|
resetMarkerStyles(nodeDict, linkDict)
|
|
|
|
|
var m
|
2015-04-06 11:58:02 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
if (highlight !== undefined)
|
|
|
|
|
if (highlight.type === "node") {
|
|
|
|
|
m = nodeDict[highlight.o.nodeinfo.node_id]
|
2015-04-06 11:58:02 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
if (m)
|
|
|
|
|
m.setStyle({ color: "orange", weight: 20, fillOpacity: 1, opacity: 0.7, className: "stroke-first" })
|
|
|
|
|
} else if (highlight.type === "link") {
|
|
|
|
|
m = linkDict[highlight.o.id]
|
2015-04-06 11:58:02 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
if (m)
|
|
|
|
|
m.setStyle({ weight: 7, opacity: 1, dashArray: "10, 10" })
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!nopanzoom)
|
2015-04-06 11:58:02 +02:00
|
|
|
|
if (m)
|
2015-04-17 22:10:47 +02:00
|
|
|
|
goto(m)
|
|
|
|
|
else
|
|
|
|
|
resetZoom()
|
|
|
|
|
}
|
2015-04-06 11:58:02 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
function calcBarycenter(nodes) {
|
|
|
|
|
nodes = nodes.map(function (d) { return d.nodeinfo.location })
|
|
|
|
|
var lats = nodes.map(function (d) { return d.latitude })
|
|
|
|
|
var lngs = nodes.map(function (d) { return d.longitude })
|
2015-03-25 01:16:15 +01:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
var barycenter = L.latLng(d3.median(lats), d3.median(lngs))
|
|
|
|
|
var barycenterDev = [d3.deviation(lats), d3.deviation(lngs)]
|
2015-04-06 15:54:26 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
var barycenterCircle = L.latLng(barycenter.lat + barycenterDev[0],
|
|
|
|
|
barycenter.lng + barycenterDev[1])
|
2015-04-06 15:54:26 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
var r = barycenter.distanceTo(barycenterCircle)
|
2015-04-06 15:54:26 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
return L.circle(barycenter, r * config.mapSigmaScale)
|
|
|
|
|
}
|
2015-04-06 15:54:26 +02:00
|
|
|
|
|
2015-04-19 12:22:09 +02:00
|
|
|
|
function mapRTree(d) {
|
|
|
|
|
var o = [ d.nodeinfo.location.latitude, d.nodeinfo.location.longitude,
|
|
|
|
|
d.nodeinfo.location.latitude, d.nodeinfo.location.longitude]
|
|
|
|
|
|
|
|
|
|
o.node = d
|
|
|
|
|
|
|
|
|
|
return o
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
self.setData = function (data) {
|
|
|
|
|
nodeDict = {}
|
|
|
|
|
linkDict = {}
|
2015-04-06 15:54:26 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
if (groupOffline)
|
|
|
|
|
groupOffline.clearLayers()
|
2015-03-25 00:54:00 +01:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
if (groupOnline)
|
|
|
|
|
groupOnline.clearLayers()
|
2015-04-03 00:02:00 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
if (groupNew)
|
|
|
|
|
groupNew.clearLayers()
|
2015-04-03 00:02:00 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
if (groupLost)
|
|
|
|
|
groupLost.clearLayers()
|
2015-04-03 00:02:00 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
if (groupLines)
|
|
|
|
|
groupLines.clearLayers()
|
2015-04-03 00:02:00 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
var lines = addLinksToMap(linkDict, linkScale, data.graph.links, router)
|
|
|
|
|
groupLines = L.featureGroup(lines).addTo(map)
|
2015-04-03 00:02:00 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
barycenter = calcBarycenter(data.nodes.all.filter(has_location))
|
2015-03-25 00:54:00 +01:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
var nodesOnline = subtract(data.nodes.all.filter(online), data.nodes.new)
|
|
|
|
|
var nodesOffline = subtract(data.nodes.all.filter(offline), data.nodes.lost)
|
2015-04-06 15:54:26 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
var markersOnline = nodesOnline.filter(has_location)
|
|
|
|
|
.map(mkMarker(nodeDict, function () { return iconOnline }, router))
|
2015-03-25 00:54:00 +01:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
var markersOffline = nodesOffline.filter(has_location)
|
|
|
|
|
.map(mkMarker(nodeDict, function () { return iconOffline }, router))
|
2015-03-25 00:54:00 +01:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
var markersNew = data.nodes.new.filter(has_location)
|
|
|
|
|
.map(mkMarker(nodeDict, function () { return iconNew }, router))
|
2015-03-25 10:29:41 +01:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
var markersLost = data.nodes.lost.filter(has_location)
|
|
|
|
|
.map(mkMarker(nodeDict, function (d) {
|
|
|
|
|
if (d.lastseen.isAfter(moment(data.now).subtract(3, "days")))
|
|
|
|
|
return iconAlert
|
2015-03-25 00:54:00 +01:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
return iconLost
|
|
|
|
|
}, router))
|
2015-03-26 13:51:08 +01:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
groupOffline = L.featureGroup(markersOffline).addTo(map)
|
|
|
|
|
groupOnline = L.featureGroup(markersOnline).addTo(map)
|
|
|
|
|
groupNew = L.featureGroup(markersNew).addTo(map)
|
|
|
|
|
groupLost = L.featureGroup(markersLost).addTo(map)
|
2015-03-26 13:51:08 +01:00
|
|
|
|
|
2015-04-19 12:22:09 +02:00
|
|
|
|
var rtreeOnlineAll = rbush(9)
|
|
|
|
|
var rtreeOnline = rbush(9)
|
|
|
|
|
var rtreeOffline = rbush(9)
|
|
|
|
|
var rtreeNew = rbush(9)
|
|
|
|
|
var rtreeLost = rbush(9)
|
|
|
|
|
|
|
|
|
|
rtreeOnlineAll.load(data.nodes.all.filter(online).filter(has_location).map(mapRTree))
|
|
|
|
|
rtreeOnline.load(nodesOnline.filter(has_location).map(mapRTree))
|
|
|
|
|
rtreeOffline.load(nodesOffline.filter(has_location).map(mapRTree))
|
|
|
|
|
rtreeNew.load(data.nodes.new.filter(has_location).map(mapRTree))
|
|
|
|
|
rtreeLost.load(data.nodes.lost.filter(has_location).map(mapRTree))
|
|
|
|
|
|
|
|
|
|
clientLayer.setData(rtreeOnlineAll)
|
|
|
|
|
labelsLayer.setData({online: rtreeOnline,
|
|
|
|
|
offline: rtreeOffline,
|
|
|
|
|
new: rtreeNew,
|
|
|
|
|
lost: rtreeLost
|
2015-04-17 23:54:19 +02:00
|
|
|
|
})
|
2015-03-29 16:14:10 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
updateView(true)
|
|
|
|
|
}
|
2015-04-17 01:02:56 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
self.resetView = function () {
|
|
|
|
|
disableTracking()
|
|
|
|
|
highlight = undefined
|
|
|
|
|
updateView()
|
|
|
|
|
}
|
2015-03-29 16:14:10 +02:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
self.gotoNode = function (d) {
|
|
|
|
|
disableTracking()
|
|
|
|
|
highlight = {type: "node", o: d}
|
|
|
|
|
updateView()
|
|
|
|
|
}
|
2015-03-25 01:16:15 +01:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
self.gotoLink = function (d) {
|
|
|
|
|
disableTracking()
|
|
|
|
|
highlight = {type: "link", o: d}
|
|
|
|
|
updateView()
|
|
|
|
|
}
|
2015-03-25 00:54:00 +01:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
self.destroy = function () {
|
|
|
|
|
map.remove()
|
|
|
|
|
}
|
2015-03-25 00:54:00 +01:00
|
|
|
|
|
2015-04-17 22:10:47 +02:00
|
|
|
|
return self
|
2015-03-31 23:24:24 +02:00
|
|
|
|
}
|
2015-03-25 00:54:00 +01:00
|
|
|
|
})
|