Skip to content

Commit

Permalink
Merge pull request #331 from BaseAdresseNationale/antoineludeau/clean…
Browse files Browse the repository at this point in the history
…-log

Cleaned log
  • Loading branch information
antoineludeau authored Dec 12, 2023
2 parents de0dc97 + 2704297 commit 1f6721b
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 1f6721b

Please sign in to comment.