]> jcornell.net Git - ntbd-parcels.git/commitdiff
Clean up a few things in main.js
authorJakob Cornell <jakob+gpg@jcornell.net>
Sun, 24 May 2026 17:29:31 +0000 (12:29 -0500)
committerJakob Cornell <jakob+gpg@jcornell.net>
Sun, 24 May 2026 20:01:33 +0000 (15:01 -0500)
main.js

diff --git a/main.js b/main.js
index e2b06e748f883250210808be5c3c4f590c84cdbb..db529775cc8482580585ac38df532dcf9cc766be 100644 (file)
--- 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);
        }