fix: semicolon

Signed-off-by: Andrew Calcutt <acalcutt@techidiots.net>
This commit is contained in:
Andrew Calcutt 2024-01-29 01:22:49 -05:00
parent 1c6e98d2c6
commit 052a2753ae

View file

@ -574,7 +574,7 @@ export const serve_rendered = {
return res.status(404).send('Out of bounds'); return res.status(404).send('Out of bounds');
} }
let tileCenter let tileCenter;
if (tileSize === 512) { if (tileSize === 512) {
tileCenter = mercator_512.ll([((x + 0.5) / (1 << z)) * (tileSize << z),((y + 0.5) / (1 << z)) * (tileSize << z)],z); tileCenter = mercator_512.ll([((x + 0.5) / (1 << z)) * (tileSize << z),((y + 0.5) / (1 << z)) * (tileSize << z)],z);
} else { } else {