Added the traceroute and neighbours to the map

This commit is contained in:
Pablo Revilla
2025-08-28 16:19:47 -07:00
parent 0500be4541
commit 1ccc3bfc7d
+1 -1
View File
@@ -125,7 +125,7 @@ var channels = new Set();
// ---- Coordinate helper ----
function isInvalidCoord(node) {
return (!node || node.lat == null || node.long == null || node.lat === 0 || node.long === 0);
return (!node || node.lat == null || node.long == null || node.lat == 0 || node.long == 0);
}
// ---- Plot nodes ----