From c9dc088a040c5f31b5e4a197eead0f3d1f7eec11 Mon Sep 17 00:00:00 2001 From: Xiaoji Chen Date: Wed, 21 Aug 2024 23:45:15 -0700 Subject: [PATCH] remove cellSize upper bound --- modules/aggregation-layers/src/grid-layer/grid-layer.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/aggregation-layers/src/grid-layer/grid-layer.ts b/modules/aggregation-layers/src/grid-layer/grid-layer.ts index 377a7d719db..38eba860c1f 100644 --- a/modules/aggregation-layers/src/grid-layer/grid-layer.ts +++ b/modules/aggregation-layers/src/grid-layer/grid-layer.ts @@ -58,7 +58,7 @@ const defaultProps: DefaultProps = { 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},