From 8aece4e64b35eb71d59b05937f4dd802493fc275 Mon Sep 17 00:00:00 2001 From: Lyret Date: Sat, 13 Jul 2024 17:55:21 +0200 Subject: [PATCH] removes debug output --- src/map/_addPowerGrid.ts | 1 - src/map/map.js | 1 - 2 files changed, 2 deletions(-) diff --git a/src/map/_addPowerGrid.ts b/src/map/_addPowerGrid.ts index 023a179..6415824 100644 --- a/src/map/_addPowerGrid.ts +++ b/src/map/_addPowerGrid.ts @@ -19,7 +19,6 @@ export const addPowerGridTomap = async (layerGroup: L.LayerGroup) => { for (let feature of json['features']) { if (feature.geometry.type != 'Point') { - console.log(feature); continue; } let name = feature.properties['Name']; diff --git a/src/map/map.js b/src/map/map.js index d7da404..9136cb0 100644 --- a/src/map/map.js +++ b/src/map/map.js @@ -228,7 +228,6 @@ export const createMap = async () => { precision: 10, }); coordinatesControl.addTo(map); - console.log(coordinatesControl); // Make all layers in the URL hash visible on load map.on('hashmetainit', function (initState) {