Skip to content

Commit

Permalink
removes debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
lyret committed Jul 13, 2024
1 parent 3be9b25 commit 8aece4e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/map/_addPowerGrid.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'];
Expand Down
1 change: 0 additions & 1 deletion src/map/map.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 8aece4e

Please sign in to comment.