hopglass/lib/map.js

190 lines
5.3 KiB
JavaScript
Raw Normal View History

define(["leaflet", "moment", "leaflet.label"], function (L, moment) {
2015-03-25 00:54:00 +01:00
var options = { worldCopyJump: true,
zoomControl: false
}
2015-03-25 19:45:21 +01:00
function mkMarker(dict, iconFunc, router) {
2015-03-25 00:54:00 +01:00
return function (d) {
2015-03-25 01:27:05 +01:00
var m = L.circleMarker([d.nodeinfo.location.latitude, d.nodeinfo.location.longitude], iconFunc(d))
2015-03-25 00:54:00 +01:00
2015-03-25 02:15:17 +01:00
m.resetStyle = function () {
m.setStyle(iconFunc(d))
}
2015-03-29 16:14:10 +02:00
m.on("click", router.node(d))
2015-03-25 02:14:56 +01:00
m.bindLabel(d.nodeinfo.hostname)
2015-03-25 00:54:00 +01:00
dict[d.nodeinfo.node_id] = m
return m
}
}
2015-03-25 19:45:21 +01:00
function addLinksToMap(dict, linkScale, graph, router) {
2015-03-25 00:54:00 +01:00
graph = graph.filter( function (d) {
return "distance" in d
})
var lines = graph.map( function (d) {
var opts = { color: linkScale(d.tq).hex(),
2015-03-25 02:15:17 +01:00
weight: 4,
opacity: 0.5,
dashArray: "none"
2015-03-25 00:54:00 +01:00
}
var line = L.polyline(d.latlngs, opts)
2015-03-25 02:15:17 +01:00
line.resetStyle = function () {
line.setStyle(opts)
}
2015-03-25 02:14:56 +01:00
line.bindLabel(d.source.node.nodeinfo.hostname + " " + d.target.node.nodeinfo.hostname + "<br><strong>" + showDistance(d) + " / " + showTq(d) + "</strong>")
2015-03-29 16:14:10 +02:00
line.on("click", router.link(d))
2015-03-25 00:54:00 +01:00
dict[linkId(d)] = line
return line
})
return lines
}
2015-03-25 02:15:17 +01:00
var iconOnline = { color: "#1566A9", radius: 6, fillOpacity: 0.5, weight: 2, className: "stroke-first" }
var iconOffline = { color: "#D43E2A", radius: 3, fillOpacity: 0.5, weight: 1, className: "stroke-first" }
var iconLost = { color: "#D43E2A", radius: 6, fillOpacity: 0.5, weight: 1, className: "stroke-first" }
2015-03-25 10:29:41 +01:00
var iconAlert = { color: "#D43E2A", radius: 6, fillOpacity: 0.5, weight: 2, className: "stroke-first node-alert" }
2015-03-25 02:15:17 +01:00
var iconNew = { color: "#558020", radius: 6, fillOpacity: 0.5, weight: 2, className: "stroke-first" }
2015-03-25 00:54:00 +01:00
var groupOnline, groupOffline, groupNew, groupLost
2015-03-25 02:50:28 +01:00
2015-03-25 19:45:21 +01:00
return function (linkScale, sidebar, router) {
2015-03-25 00:54:00 +01:00
var self = this
var el = document.createElement("div")
2015-03-29 16:14:10 +02:00
el.classList.add("map")
2015-03-25 00:54:00 +01:00
self.div = el
var map = L.map(el, options)
L.tileLayer("https://otile{s}-s.mqcdn.com/tiles/1.0.0/osm/{z}/{x}/{y}.jpg", {
subdomains: "1234",
type: "osm",
attribution: "Tiles &copy; <a href=\"https://www.mapquest.com/\" target=\"_blank\">MapQuest</a>, Data CC-BY-SA OpenStreetMap",
2015-03-25 00:54:00 +01:00
maxZoom: 18
}).addTo(map)
2015-03-25 01:16:15 +01:00
var nodeDict = {}
var linkDict = {}
2015-03-29 17:48:25 +02:00
self.setData = function (data) {
2015-03-25 01:16:15 +01:00
nodeDict = {}
linkDict = {}
2015-03-25 00:54:00 +01:00
2015-03-31 17:21:58 +02:00
var lines = addLinksToMap(linkDict, linkScale, data.graph.links, router)
L.featureGroup(lines).addTo(map)
2015-03-25 00:54:00 +01:00
2015-03-29 17:48:25 +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-03-25 00:54:00 +01:00
var markersOnline = nodesOnline.filter(has_location)
2015-03-29 16:14:10 +02:00
.map(mkMarker(nodeDict, function () { return iconOnline }, router))
2015-03-25 00:54:00 +01:00
var markersOffline = nodesOffline.filter(has_location)
2015-03-29 16:14:10 +02:00
.map(mkMarker(nodeDict, function () { return iconOffline }, router))
2015-03-25 10:29:41 +01:00
2015-03-29 17:48:25 +02:00
var markersNew = data.nodes.new.filter(has_location)
2015-03-29 16:14:10 +02:00
.map(mkMarker(nodeDict, function () { return iconNew }, router))
2015-03-25 00:54:00 +01:00
2015-03-29 17:48:25 +02:00
var markersLost = data.nodes.lost.filter(has_location)
.map(mkMarker(nodeDict, function (d) {
2015-03-29 17:48:25 +02:00
if (d.lastseen.isAfter(moment(data.now).subtract(3, "days")))
return iconAlert
return iconLost
}, router))
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-25 02:50:28 +01:00
}
2015-03-29 16:14:10 +02:00
function resetMarkerStyles(nodes, links) {
Object.keys(nodes).forEach( function (d) {
nodes[d].resetStyle()
})
Object.keys(links).forEach( function (d) {
links[d].resetStyle()
})
}
function setView(bounds) {
map.fitBounds(bounds, {paddingTopLeft: [sidebar.getWidth(), 0]})
}
2015-03-25 02:50:28 +01:00
function resetView() {
resetMarkerStyles(nodeDict, linkDict)
2015-03-25 00:54:00 +01:00
var bounds = L.latLngBounds([])
bounds.extend(groupNew.getBounds())
bounds.extend(groupLost.getBounds())
if (!bounds.isValid())
bounds.extend(groupOnline.getBounds())
2015-03-25 00:54:00 +01:00
if (!bounds.isValid())
bounds.extend(groupOffline.getBounds())
2015-03-25 00:54:00 +01:00
if (bounds.isValid())
2015-03-25 01:16:15 +01:00
setView(bounds)
}
function goto(dict, id) {
var m = dict[id]
if (m === undefined)
2015-03-29 16:14:10 +02:00
return undefined
2015-03-25 00:54:00 +01:00
2015-03-25 01:16:15 +01:00
var bounds
2015-03-25 00:54:00 +01:00
2015-03-25 01:16:15 +01:00
if ("getBounds" in m)
bounds = m.getBounds()
else
bounds = L.latLngBounds([m.getLatLng()])
2015-03-25 00:54:00 +01:00
2015-03-25 01:16:15 +01:00
setView(bounds)
2015-03-25 02:15:17 +01:00
return m
2015-03-25 01:16:15 +01:00
}
2015-03-25 02:50:28 +01:00
self.resetView = resetView
2015-03-25 01:16:15 +01:00
self.gotoNode = function (d) {
2015-03-25 02:15:17 +01:00
resetMarkerStyles(nodeDict, linkDict)
var m = goto(nodeDict, d.nodeinfo.node_id)
if (m)
m.setStyle({ fillColor: m.options.color, color: "orange", weight: 20, fillOpacity: 1, opacity: 0.7 })
2015-03-25 02:50:28 +01:00
else
resetView()
2015-03-25 01:16:15 +01:00
}
2015-03-25 00:54:00 +01:00
2015-03-25 01:16:15 +01:00
self.gotoLink = function (d) {
2015-03-25 02:15:17 +01:00
resetMarkerStyles(nodeDict, linkDict)
var m = goto(linkDict, linkId(d))
if (m)
m.setStyle({ weight: 7, opacity: 1, dashArray: "10, 10" })
2015-03-25 02:50:28 +01:00
else
resetView()
2015-03-25 00:54:00 +01:00
}
self.destroy = function () {
map.remove()
}
2015-03-25 00:54:00 +01:00
return self
}
})