Skip to content

Commit

Permalink
Merge pull request #15 from ch-covid-19-ind/latitude-longitude-fix
Browse files Browse the repository at this point in the history
fixed reverse lattitude issue
  • Loading branch information
mullerch authored Mar 30, 2020
2 parents c6c3fa3 + bfdd844 commit 157a237
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/Visualize.vue
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@
}
if (location.longitude && location.latitude) {
location.coordinates = [+location.longitude, +location.latitude];
location.coordinates = [+location.latitude, +location.longitude];
} else {
continue;
}
Expand Down

0 comments on commit 157a237

Please sign in to comment.