Skip to content

Commit

Permalink
Revert debug page
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanhamley committed Nov 4, 2021
1 parent 3de51db commit 1512a03
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions debug/projections.html
Original file line number Diff line number Diff line change
Expand Up @@ -146,21 +146,21 @@
features: []
};

for (let i = -1; i < 1; i += 0.05) {
for (let i = -170; i < 180; i += 10) {
fc.features.push({
type: 'Feature',
geometry: {
type: 'LineString',
coordinates: [[i, -1], [i, 1]]
coordinates: [[i, -80], [i, 80]]
}
});
}
for (let i = -1; i < 1; i += 0.05) {
for (let i = -80; i < 80; i += 10) {
fc.features.push({
type: 'Feature',
geometry: {
type: 'LineString',
coordinates: [[-1, i], [1, i]]
coordinates: [[-180, i], [180, i]]
}
});
}
Expand Down

0 comments on commit 1512a03

Please sign in to comment.