-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
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
[Bug]PolygonLayer.getFillColor not invoked if data is an arbitrary "object that implements the iterable protocol" #9469
Comments
Technically speaking an Iterator is also iterable so this should be clarified in the docs...? In your example the most efficient way to supply data is to simply pass the map itself to the data prop. |
Passing the map directly solves the problem with const rectangle: [number, number][] = [[-122.4, 37.7], [-122.4, 37.8], [-122.5, 37.8], [-122.5, 37.7], [-122.4, 37.7]]
const MY_REGIONS = new Map<string, [number, number][]>([['Rectangle', rectangle]])
function polygonLayer(): Layer {
return new PolygonLayer<[string, [number, number][]]>({
data: MY_REGIONS,
getPolygon: mapEntry => mapEntry[1],
lineWidthMinPixels: 1,
getFillColor: [0, 206, 209, 160],
pickable: true,
onHover: pickable => console.log('onHover', pickable.object),
onClick: pickable => console.log('onClick', pickable.object)
})
} the callbacks So I think the sentence
in the documentation needs some clarification. |
The documentation is correct in stating that PickingInfo is documented here:
You can still figure out which object is picked with |
The point is that, by reading the documentation of The documentation of |
Description
if PolygonLayer.data is an arbitrary "object that implements the iterable protocol", getFillColor is not necessarily invoked.
Flavors
Expected Behavior
if PolygonLayer.data is an arbitrary object that implements the iterable protocol, getFillColor is invoked for all objects returned by the iterator.
Steps to Reproduce
Given:
For a layer created like this

createLayer('ok', Array.from(MY_REGIONS.values()))
getFillColor is invoked:
But not for a layer created like this:
createLayer('error', MY_REGIONS.values())
Environment
Logs
Empty
The text was updated successfully, but these errors were encountered: