Skip to content

Commit

Permalink
Switched log to comment
Browse files Browse the repository at this point in the history
  • Loading branch information
antoineludeau committed Dec 11, 2023
1 parent de0dc97 commit 2704297
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/util/geo.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ function derivePositionProps(position, minZoom, maxZoom) {
const overX = (Math.ceil(xf) - xf) < 1 / (2 * extent)
const overY = (Math.ceil(yf) - yf) < 1 / (2 * extent)
if (overX || overY) { // L'arrondit du pixel depassera l'etendue
console.log(`la position s'affichera sur la tuile suivante ${z}/${overX ? x + 1 : x}/${overY ? y + 1 : y}`)
// La position s'affichera sur la tuile suivante ${z}/${overX ? x + 1 : x}/${overY ? y + 1 : y}`)
nestedTile.push(`${z}/${overX ? x + 1 : x}/${overY ? y + 1 : y}`)
}

Expand Down

0 comments on commit 2704297

Please sign in to comment.