Skip to content

Commit

Permalink
Fix hover icon
Browse files Browse the repository at this point in the history
  • Loading branch information
jmccollum-woolpert committed Jul 22, 2024
1 parent 77d07ea commit c2ec2c8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -188,8 +188,8 @@ export abstract class BaseVisitRequestLayer {
data,
iconAtlas: this.getIconAtlas(),
iconMapping: this.getIconMapping(),
getIcon: (d) => (d.selected ? this.getDefaultIconFn(data) : this.getIcon(data)),
getSize: 12,
getIcon: (d) => (d.selected ? this.getIcon(d) : this.getDefaultIconFn(d)),
getSize: 13,
sizeScale: this.getSizeScale(),
getPosition: (d) => d.arrivalPosition,
pickable: false,
Expand Down

0 comments on commit c2ec2c8

Please sign in to comment.