Standardize on lon/lat not lat/lon
This commit is contained in:
parent
bf11f90a34
commit
31cd14cd86
2 changed files with 3 additions and 3 deletions
|
|
@ -184,7 +184,7 @@
|
|||
for (let city of cities) {
|
||||
if (city.guessed) {
|
||||
ctx.beginPath();
|
||||
const c = transform([city.location[1], city.location[0]])
|
||||
const c = transform(city.location)
|
||||
console.log(city.location, c)
|
||||
ctx.arc(c[0], c[1], 2, 0, 2*Math.PI, true);
|
||||
ctx.fill();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue