Skip to content

Commit

Permalink
fix syntax error in serve_rendered.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Jones authored and Michael Jones committed Nov 21, 2023
1 parent 7421022 commit d719fd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/serve_rendered.js
Original file line number Diff line number Diff line change
Expand Up @@ -1009,7 +1009,7 @@ export const serve_rendered = {
let center = [(bbox[0] + bbox[2]) / 2, (bbox[1] + bbox[3]) / 2];

const transformer = raw
? (coords) => proj4(EPSG:3395, 'EPSG:4326', coords)
? (coords) => proj4('EPSG:3395', 'EPSG:4326', coords)
: item.dataProjWGStoInternalWGS;

if (transformer) {
Expand Down

0 comments on commit d719fd2

Please sign in to comment.