Skip to content

Commit

Permalink
remove cellSize upper bound
Browse files Browse the repository at this point in the history
  • Loading branch information
Pessimistress committed Aug 22, 2024
1 parent 94e670b commit c9dc088
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/aggregation-layers/src/grid-layer/grid-layer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const defaultProps: DefaultProps<GridLayerProps> = {
onSetElevationDomain: noop,

// grid
cellSize: {type: 'number', min: 0, max: 1000, value: 1000},
cellSize: {type: 'number', min: 0, value: 1000},
coverage: {type: 'number', min: 0, max: 1, value: 1},
getPosition: {type: 'accessor', value: (x: any) => x.position},
gridAggregator: {type: 'function', optional: true, value: null},
Expand Down

0 comments on commit c9dc088

Please sign in to comment.