From 1d2e9eae73e4975bc1dc8d1581768f20593c1702 Mon Sep 17 00:00:00 2001 From: Andrew Calcutt Date: Thu, 12 Oct 2023 00:29:26 -0400 Subject: [PATCH] fix: remove console.log Signed-off-by: Andrew Calcutt --- src/pmtiles_adapter.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/pmtiles_adapter.js b/src/pmtiles_adapter.js index f30d632..13151f2 100644 --- a/src/pmtiles_adapter.js +++ b/src/pmtiles_adapter.js @@ -54,7 +54,6 @@ export const GetPMtilesInfo = async (pmtiles) => { metadata['format'] = GetPmtilesTileType(header.tileType).type; metadata['minzoom'] = header.minZoom; metadata['maxzoom'] = header.maxZoom; - console.log('maxzoom:' + header.maxZoom) if(header.minLon && header.minLat && header.maxLon && header.maxLat) { metadata['bounds'] = [header.minLon, header.minLat, header.maxLon, header.maxLat];