admin管理员组文章数量:1345412
I'm using react-map-gl with clustering to display clustered features. I have these layers:
alerts
(unclustered points)alerts-cluster
(cluster circles)alerts-cluster-number
(cluster counts)Similar
events-*
layers
When querying rendered features during viewstate changes, I need to get the IDs of all visible individual features (both standalone and those within clusters).
The Problem:
For unclustered features, I correctly get their individual IDs
For clustered features, I only get the cluster ID rather than the IDs of the points within the cluster
What I Need:
How can I get the original feature IDs of points contained within visible clusters?
Is there a way to "expand" clusters when querying, or access their children features?
Should I use a different method than queryRenderedFeatures for this purpose?
My current approach:
useEffect(() => {
setRenderedFeaturesIds(
ref.current
?.queryRenderedFeatures(
{},
{
layers: [
"alerts",
"events",
"alerts-cluster",
"events-cluster",
"alerts-cluster-number",
"events-cluster-number",
],
}
)
.map((f) => f.id),
);
}, [viewState]);
本文标签: maplibre glHow to get individual feature IDs from clusters in reactmapglStack Overflow
版权声明:本文标题:maplibre gl - How to get individual feature IDs from clusters in react-map-gl? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743813521a2543502.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论