npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@uiw/react-baidu-map-point-collection

v2.7.2

Published

Baidu Map map-point-collection Components for React.

Downloads

11,324

Readme

PointCollection 加载海量点

Buy me a coffee npm version Downloads

表示海量点类,利用该类可同时在地图上展示万级别的点,目前仅适用于html5浏览器。

渲染海量点会耗费一定性能,应该注意不要频繁变动 point 数组

import { PointCollection, usePointCollection } from '@uiw/react-baidu-map';
// 或者单独安装使用
import PointCollection, { usePointCollection } from '@uiw/react-baidu-map-point-collection';

基本用法

import React from 'react';
import { useEffect, useState } from 'react';
import { Map, PointCollection, APILoader, requireScript } from '@uiw/react-baidu-map';

const Example = () => {
  const [visiable, setVisiable] = useState(true);
  const [points, setPoints] = useState([]);
  const [position, setPositon] = useState('');
  useEffect(() => {
    if(points.length === 0) {
      requireScript('https://lbsyun.baidu.com/jsdemo/data/points-sample-data.js').then(() => {
        if(window.data && window.data.data) {
          setPoints(window.data.data);
        }
      });
    }
  });
  function compRef(props) {
    if (props && props.pointCollection) {
      console.log('pointCollection::', props.pointCollection, props.map, props.BMap);
    }
  }
  return (
    <>
      <button onClick={() => setVisiable(!visiable)}>{visiable ? '隐藏' : '显示'}</button>
      {position && <span>标注点经纬度:{position}</span>}
      <Map widget={['NavigationControl']} zoom={5} style={{ height: 350 }}>
        <PointCollection
          ref={compRef}
          visiable={visiable}
          onClick={(e) => {
            setPositon(JSON.stringify(e.point))
          }}
          styles={{ shape: 1 }}
          points={[
            ...points
          ]}
        />
      </Map>
    </>
  )
}

const Demo = () => (
  <div style={{ width: '100%' }}>
    <APILoader akay="eYpCTECSntZmw0WyoQ7zFpCRR9cpgHFG">
      <Example />
    </APILoader>
  </div>
);
export default Demo;

使用 hooks

可以使用 pointCollection, setPointCollection, points, setPoints 钩子函数。

下面实例来源官方网站实例

import React from 'react';
import { useRef, useEffect, useState } from 'react';
import { Map, useMap, Provider, APILoader, usePointCollection, requireScript } from '@uiw/react-baidu-map';

let loadData = false;
let data = []
const Example = () => {
  const divElm = useRef();
  const { setContainer, map } = useMap({ widget: ['GeolocationControl', 'NavigationControl'], zoom: 5 });
  const { points, setPoints } = usePointCollection({ map });
  useEffect(() => {
    if (divElm.current && !map) {
      setContainer(divElm.current);
    }
    if (!loadData) {
      requireScript('https://lbsyun.baidu.com/jsdemo/data/points-sample-data.js').then(() => {
        if(window.data && window.data.data) {
          if (!loadData) {
            loadData = true;
            data = window.data.data;
            setPoints(window.data.data);
          }
        }
      });
    }
  });
  return (
    <>
      <button onClick={() => setPoints(points.length > 0 ? [] : data)}>{points && points.length > 0 ? '清空标注' : '显示标注'}</button>
      <div ref={divElm} style={{ height: '100%' }} />
    </>
  )
}

const Demo = () => (
  <div style={{ width: '100%', height: '300px' }}>
    <APILoader akay="eYpCTECSntZmw0WyoQ7zFpCRR9cpgHFG">
      <Provider>
        <Example />
      </Provider>
    </APILoader>
  </div>
);
export default Demo;

Props

| 参数 | 说明 | 类型 | 默认值 | | ----- | ----- | ----- | ----- | | points | 必填 创建海量点类。为点的坐标集合 [[74.438,39.006,1],[74.932,38.382,1]] | [lng: number, lat: number][] | - | | visiable | 覆盖物是否可见。 | boolean | - | | styles | 设置 {shape,size,color},是一个可控属性 | object | - | | shape | 海量点的预设形状 | ShapeType | BMAP_POINT_SHAPE_WATERDROP | | size | 海量点的预设尺寸 | SizeType | BMAP_POINT_SIZE_SMALL | | color | 海量点的颜色,默认为'#fa937e',同时支持颜色字符串,如'red'; | string | #d340c3 |

事件

| 参数 | 说明 | 类型 | | ----- | ----- | ----- | | onClick | 鼠标点击点时会触发此事件 | (event: { type: string, target: any, point: Point }) => void; | | onMouseOver | 鼠标移入点时会触发该事件 | (event: { type: string, target: any, point: Point }) => void; | | onMouseOut | 鼠标移出点时会触发该事件 | (event: { type: string, target: any }) => void; |

ShapeType

| 常量 | 描述 | | ---- | ---- | |BMAP_POINT_SHAPE_CIRCLE | 圆形,为默认形状 | |BMAP_POINT_SHAPE_STAR | 星形 | |BMAP_POINT_SHAPE_SQUARE | 方形 | |BMAP_POINT_SHAPE_RHOMBUS | 菱形 | |BMAP_POINT_SHAPE_WATERDROP | 水滴状,该类型无size和color属性 |

SizeType

| 常量 | 描述 | | ---- | ---- | | BMAP_POINT_SIZE_TINY | 定义点的尺寸为超小,宽高为2px2px | | BMAP_POINT_SIZE_SMALLER | 定义点的尺寸为很小,宽高为4px4px | | BMAP_POINT_SIZE_SMALL | 定义点的尺寸为小,宽高为8px8px | | BMAP_POINT_SIZE_NORMAL | 定义点的尺寸为正常,宽高为10px10px,为海量点默认尺寸 | | BMAP_POINT_SIZE_BIG | 定义点的尺寸为大,宽高为16px16px | | BMAP_POINT_SIZE_BIGGER | 定义点的尺寸为很大,宽高为20px20px | | BMAP_POINT_SIZE_HUGE | 定义点的尺寸为超大,宽高为30px*30px |