Open clo-vis opened 2 months ago
https://deck.gl/docs/api-reference/aggregation-layers/hexagon-layer
The line
getTooltip: ({object}: PickingInfo<BikeRack>) => object && `Count: ${object.elevationValue}`,
in the TypeScript example cannot be compiled. The error the compiler issues is:
Property 'elevationValue' does not exist on type 'BikeRack'. ts(2339)
(using typescript 5.5.4)
The HexagonLayer produces its own picking info type. This is fixed on the master branch and will land in 9.1.
Link
https://deck.gl/docs/api-reference/aggregation-layers/hexagon-layer
Description
The line
in the TypeScript example cannot be compiled. The error the compiler issues is:
Property 'elevationValue' does not exist on type 'BikeRack'. ts(2339)
(using typescript 5.5.4)