Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | import { useState, useEffect } from 'react'; import { useMapContext } from '@uiw/react-baidu-map-map'; import { useProperties, useVisiable, useEventProperties } from '@uiw/react-baidu-map-utils'; import { PointCollectionProps } from './'; const EVENTS = ['onClick', 'onMouseOver', 'onMouseOut']; export interface UsePointCollection extends PointCollectionProps {} export function usePointCollection(props = {} as UsePointCollection) { const { shape, color, size } = props; const { map } = useMapContext(); const [points, setPoints] = useState(props.points); const [pointCollection, setPointCollection] = useState<BMap.PointCollection>(); const getPoints = (data: [number, number][] = []) => { const result: BMap.Point[] = []; data.forEach((item) => { result.push(new BMap.Point(item[0], item[1])); }); return result; }; useEffect(() => { if (!BMap || !map) return; // 判断当前浏览器是否支持绘制海量点 if (document && !document.createElement('canvas').getContext) return; const opts = { shape, color, size }; if (!pointCollection) { if (!opts.size) opts.size = BMAP_POINT_SIZE_SMALL; if (!opts.shape) opts.shape = BMAP_POINT_SHAPE_WATERDROP; if (!opts.color) opts.color = '#d340c3'; const pointCollection = new BMap.PointCollection(getPoints(points), opts); // pointCollection.clear(); map.addOverlay(pointCollection); setPointCollection(pointCollection); EVENTS.forEach((evnetName) => { if ((props as any)[evnetName]) { const name = evnetName.replace(/^on/, '').toLowerCase(); pointCollection.addEventListener(name, (props as any)[evnetName]); } }); } // eslint-disable-next-line react-hooks/exhaustive-deps }, [map]); useEffect(() => { if (pointCollection && points) { // pointCollection.clear(); pointCollection.setPoints(getPoints(points)); } }, [points, pointCollection]); useVisiable(pointCollection!, props); useEventProperties<BMap.PointCollection, UsePointCollection>(pointCollection!, props, [ 'onClick', 'onMouseOver', 'onMouseOut', ]); useProperties<BMap.PointCollection, UsePointCollection>(pointCollection!, props, ['Styles']); return { pointCollection, setPointCollection, points, setPoints, }; } |