use-supercluster 获取空数组 编辑:

问题描述

figuring out 如何处理 TypeScript 和 use-supercluster 库之后,我已经“让它工作了”,直到我遇到一个新问题:每当我使用 useSuperCluster() 函数时,我都会得到一个空数组。

我正在关注 creator's guide,所以我可以处理我自己的项目。

这就是我所做的:

const [bounds,setBounds] = useState(undefined as BBox | undefined);
const { data,error } = useSwr(API_URL,fetcher);
const coords: Array<ParkingData> = data && !error ? data.data : [];
const points: Array<PointFeature<GeoJsonProperties>> = coords.map(pd => ({
    type: "Feature",properties: {
        cluster: false,pdId: pd._id,category: 'test'
    },geometry: { type: "Point",coordinates: [ pd.lat,pd.lng ] }
}));

const { clusters } = useSuperCluster({
    points,bounds,zoom,options: { radius: 75,maxZoom: 25 }
});

当我调试 points 时,我得到如下信息:

但是,clusters 是空的。我用 bounds 属性更新视频中的 onChange,例如:

onChange={({ zoom,bounds }) => {
    setZoom(zoom);
    setBounds([
        bounds.nw.lng,bounds.se.lat,bounds.se.lng,bounds.nw.lat
    ]);
}}

那么,我做错了什么?

编辑:

我已将 supercluster 对象添加useSuperCluster() 解构中,如 const { clusters,supercluster } = useSuperCluster(...),调试后我得到以下对象:

解决方法

尝试更改此行顺序:

geometry: { type: "Point",coordinates: [ pd.lat,pd.lng ] }

到:

geometry: { type: "Point",coordinates: [ pd.lng,pd.lat ] }

显然,顺序是这样的,就我而言,我尝试了这种更改,但对我不起作用,但对您来说,它有可能起作用。

https://github.com/mapbox/supercluster/issues/45