We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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 text was updated successfully, but these errors were encountered:
The HexagonLayer produces its own picking info type. This is fixed on the master branch and will land in 9.1.
Sorry, something went wrong.
No branches or pull requests
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)
The text was updated successfully, but these errors were encountered: