From: Jakob Cornell Date: Sun, 24 May 2026 17:29:31 +0000 (-0500) Subject: Clean up a few things in main.js X-Git-Url: https://jcornell.net/gitweb/gitweb.cgi?a=commitdiff_plain;h=94b2b924ebc652d480a03e95ebddcb8a7599bd23;p=ntbd-parcels.git Clean up a few things in main.js --- 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); }