Skip to content

Commit

Permalink
fix(carto): Make point labels non-interactive, avoid flicker
Browse files Browse the repository at this point in the history
  • Loading branch information
donmccurdy committed Feb 7, 2025
1 parent 2819e97 commit 3e4cea9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions modules/carto/src/api/parse-map.ts
Original file line number Diff line number Diff line change
Expand Up @@ -347,6 +347,9 @@ function createChannelProps(
extensions: [collisionFilterExtension],
collisionEnabled: true,
collisionGroup,
// Make labels non-interactive, avoiding deck.gl issue:
// https://github.com/visgl/deck.gl/issues/9410
pickable: false,

// getPointRadius already has radiusScale baked in, so only pass one or the other
...(result.getPointRadius
Expand Down

0 comments on commit 3e4cea9

Please sign in to comment.