update version

This commit is contained in:
Pablo Revilla
2025-06-24 20:00:30 -07:00
parent 6b4b1b52ce
commit a58aa5b211
+6 -7
View File
@@ -47,7 +47,7 @@
<script>
var map = L.map('map');
const excludedChannels = new Set(["PKI", "KoiNet", "N1MRODS", "BayMeshNews"]); // Customize these
L.tileLayer('https://tile.openstreetmap.org/{z}/{x}/{y}.png', {
maxZoom: 19,
attribution: '&copy; <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a>'
@@ -122,12 +122,11 @@ var nodes = [
return color;
}
nodes.forEach(function(node) {
if (node.lat !== null && node.long !== null) {
let category = node.channel;
let isRouter = node.isRouter === "True"; // Convert from string
channels.add(category);
nodes.forEach(function(node) {
if (node.lat !== null && node.long !== null && !excludedChannels.has(node.channel)) {
let category = node.channel;
let isRouter = node.isRouter === "True"; // Convert from string
channels.add(category);
let color = hashToColor(category);