new markers (blinking)
This commit is contained in:
parent
e791bb2613
commit
913030abb0
32
history.html
32
history.html
@ -211,6 +211,38 @@
|
|||||||
right: 0.5em;
|
right: 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.leaflet-marker-icon.node-online {
|
||||||
|
filter: hue-rotate(203deg) brightness(1.5);
|
||||||
|
-webkit-filter: hue-rotate(203deg) brightness(1.5);
|
||||||
|
opacity: 0.9;
|
||||||
|
}
|
||||||
|
|
||||||
|
.leaflet-marker-icon.node-new {
|
||||||
|
filter: hue-rotate(203deg) brightness(2.5);
|
||||||
|
-webkit-filter: hue-rotate(203deg) brightness(2.5);
|
||||||
|
}
|
||||||
|
|
||||||
|
.leaflet-marker-icon.node-offline {
|
||||||
|
-webkit-animation: blink 1s linear;
|
||||||
|
-webkit-animation-iteration-count: infinite;
|
||||||
|
animation: blink 1s linear;
|
||||||
|
animation-iteration-count: infinite;
|
||||||
|
filter: saturate(160%);
|
||||||
|
-webkit-filter: saturate(160%);
|
||||||
|
}
|
||||||
|
|
||||||
|
@-webkit-keyframes blink {
|
||||||
|
0% { opacity: 1.0; }
|
||||||
|
80% { opacity: 1.0; }
|
||||||
|
90% { opacity: 0.0; }
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes blink {
|
||||||
|
0% { opacity: 1.0; }
|
||||||
|
80% { opacity: 1.0; }
|
||||||
|
90% { opacity: 0.0; }
|
||||||
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 80em) {
|
@media screen and (max-width: 80em) {
|
||||||
#sidebar {
|
#sidebar {
|
||||||
font-size: 0.8em;
|
font-size: 0.8em;
|
||||||
|
57
history.js
57
history.js
@ -211,23 +211,41 @@ function linkId(d) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function mkmap(map, newnodes, lostnodes, onlinenodes, graph, gotoAnything) {
|
function mkmap(map, newnodes, lostnodes, onlinenodes, graph, gotoAnything) {
|
||||||
function mkCircleNode(d) {
|
function mkMarker(dict, iconFunc) {
|
||||||
var opt = { color: "#1566A9",
|
return function (d) {
|
||||||
fillColor: "#1566A9",
|
var opt = { icon: iconFunc(d),
|
||||||
radius: 5,
|
title: d.nodeinfo.hostname
|
||||||
opacity: 0.7,
|
|
||||||
fillOpacity: 0.5
|
|
||||||
}
|
}
|
||||||
|
|
||||||
var m = L.circleMarker([d.nodeinfo.location.latitude, d.nodeinfo.location.longitude], opt)
|
var m = L.marker([d.nodeinfo.location.latitude, d.nodeinfo.location.longitude], opt)
|
||||||
|
|
||||||
m.on('click', gotoAnything.node(d, false))
|
m.on('click', gotoAnything.node(d, false))
|
||||||
m.bindPopup(d.nodeinfo.hostname)
|
m.bindPopup(d.nodeinfo.hostname)
|
||||||
|
|
||||||
markersDict[d.nodeinfo.node_id] = m
|
dict[d.nodeinfo.node_id] = m
|
||||||
|
|
||||||
return m
|
return m
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var iconBase = { iconUrl: 'img/circlemarker.png',
|
||||||
|
iconRetinaUrl: 'img/circlemarker@2x.png',
|
||||||
|
iconSize: [17, 17],
|
||||||
|
iconAnchor: [8, 8],
|
||||||
|
popupAnchor: [0, -3]
|
||||||
|
}
|
||||||
|
|
||||||
|
var iconOnline = Object.assign({}, iconBase)
|
||||||
|
iconOnline.className = "node-online"
|
||||||
|
iconOnline = L.icon(iconOnline)
|
||||||
|
|
||||||
|
var iconOffline = Object.assign({}, iconBase)
|
||||||
|
iconOffline.className = "node-offline"
|
||||||
|
iconOffline = L.icon(iconOffline)
|
||||||
|
|
||||||
|
var iconNew = Object.assign({}, iconBase)
|
||||||
|
iconNew.className = "node-new"
|
||||||
|
iconNew = L.icon(iconNew)
|
||||||
|
|
||||||
L.control.zoom({ position: "topright" }).addTo(map)
|
L.control.zoom({ position: "topright" }).addTo(map)
|
||||||
|
|
||||||
@ -242,25 +260,12 @@ function mkmap(map, newnodes, lostnodes, onlinenodes, graph, gotoAnything) {
|
|||||||
|
|
||||||
var nodes = newnodes.concat(lostnodes).filter(has_location)
|
var nodes = newnodes.concat(lostnodes).filter(has_location)
|
||||||
|
|
||||||
var markers = nodes.map( function (d) {
|
var markers = nodes.map(mkMarker(markersDict, function (d) {
|
||||||
var icon = L.AwesomeMarkers.icon({ markerColor: d.flags.online ? "green" : "red",
|
return d.flags.online ? iconNew : iconOffline
|
||||||
icon: d.flags.online ? "lightbulb" : "bug" })
|
}))
|
||||||
|
|
||||||
var opt = { icon: icon,
|
var onlinemarkers = subtract(onlinenodes.filter(has_location), newnodes)
|
||||||
title: d.nodeinfo.hostname
|
.map(mkMarker(markersDict, function (d) { return iconOnline } ))
|
||||||
}
|
|
||||||
|
|
||||||
var m = L.marker([d.nodeinfo.location.latitude, d.nodeinfo.location.longitude], opt)
|
|
||||||
|
|
||||||
m.on('click', gotoAnything.node(d, false))
|
|
||||||
m.bindPopup(d.nodeinfo.hostname)
|
|
||||||
|
|
||||||
markersDict[d.nodeinfo.node_id] = m
|
|
||||||
|
|
||||||
return m
|
|
||||||
})
|
|
||||||
|
|
||||||
var onlinemarkers = subtract(onlinenodes.filter(has_location), newnodes).map(mkCircleNode)
|
|
||||||
|
|
||||||
var groupOnline = L.featureGroup(onlinemarkers).addTo(map)
|
var groupOnline = L.featureGroup(onlinemarkers).addTo(map)
|
||||||
var group = L.featureGroup(markers).addTo(map)
|
var group = L.featureGroup(markers).addTo(map)
|
||||||
|
BIN
img/circlemarker.png
Normal file
BIN
img/circlemarker.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 618 B |
BIN
img/circlemarker@2x.png
Normal file
BIN
img/circlemarker@2x.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.1 KiB |
Loading…
Reference in New Issue
Block a user