fix: put back const

Signed-off-by: Andrew Calcutt <acalcutt@techidiots.net>
This commit is contained in:
Andrew Calcutt 2024-01-29 01:36:45 -05:00
parent b32abce1f6
commit 46b971e52f

View file

@ -575,7 +575,7 @@ export const serve_rendered = {
return res.status(404).send('Out of bounds'); return res.status(404).send('Out of bounds');
} }
let tileCenter = mercator.ll( const tileCenter = mercator.ll(
[ [
((x + 0.5) / (1 << z)) * (256 << z), ((x + 0.5) / (1 << z)) * (256 << z),
((y + 0.5) / (1 << z)) * (256 << z), ((y + 0.5) / (1 << z)) * (256 << z),