Skip to content

Commit

Permalink
fix: remove console.log
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Calcutt <[email protected]>
  • Loading branch information
acalcutt committed Oct 12, 2023
1 parent 81e4011 commit 1d2e9ea
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/pmtiles_adapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -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];
Expand Down

0 comments on commit 1d2e9ea

Please sign in to comment.