From 94b2b924ebc652d480a03e95ebddcb8a7599bd23 Mon Sep 17 00:00:00 2001 From: Jakob Cornell Date: Sun, 24 May 2026 12:29:31 -0500 Subject: [PATCH] Clean up a few things in main.js --- main.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/main.js b/main.js index e2b06e7..db52977 100644 --- a/main.js +++ b/main.js @@ -89,7 +89,6 @@ async function asyncMain() { noLotSizeCount, ); - overlay.innerText = "rendering parcels"; for (const feature of matches) { const leafletCoords = transposeCoordinates(feature.geometry.coordinates); L.polygon(leafletCoords, {color: "blue", weight: 1}).addTo(map); @@ -115,7 +114,6 @@ async function asyncMain() { flyBounds = L.latLngBounds(L.latLng(minLat, minLon), L.latLng(maxLat, maxLon)); } - console.log(flyBounds); if (flyBounds !== null) { map.flyToBounds(flyBounds); } -- 2.39.5