Skip to content

Commit

Permalink
Try increasing outer bounds (#584)
Browse files Browse the repository at this point in the history
  • Loading branch information
theosanderson committed Apr 22, 2024
1 parent cf2825e commit 91cebe0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions taxonium_component/src/hooks/useLayers.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -141,11 +141,11 @@ const useLayers = ({
}, [base_data, settings.displayPointsForInternalNodes]);

const outer_bounds = [
[-1000, -1000],
[1000, -1000],
[10000, 10000],
[-1000, 10000],
[-1000, -1000],
[-100000, -100000],
[100000, -100000],
[1000000, 1000000],
[-100000, 1000000],
[-100000, -100000],
];
const inner_bounds = [
[viewState.min_x, viewState.min_y < -1000 ? -1000 : viewState.min_y],
Expand Down

0 comments on commit 91cebe0

Please sign in to comment.