Skip to content

Commit

Permalink
fix: deck.gl Scatterplot min/max radius
Browse files Browse the repository at this point in the history
  • Loading branch information
kgabryje committed Jun 12, 2023
1 parent e0253a4 commit b5e85c7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ export function getLayer(
fp64: true,
getFillColor: d => d.color,
getRadius: d => d.radius,
radiusMinPixels: fd.min_radius || null,
radiusMaxPixels: fd.max_radius || null,
radiusMinPixels: Number(fd.min_radius) || null,
radiusMaxPixels: Number(fd.max_radius) || null,
stroked: false,
...commonLayerProps(
fd,
Expand Down

0 comments on commit b5e85c7

Please sign in to comment.