2.7.1 • Published 4 months ago

@uiw/react-baidu-map-circle v2.7.1

Weekly downloads
-
License
MIT
Repository
github
Last release
4 months ago

Circle 圆

Buy me a coffee npm version Downloads

表示地图上的圆覆盖物。

import { Circle, useCircle } from '@uiw/react-baidu-map';
// 或者单独安装使用
import Circle, { useCircle } from '@uiw/react-baidu-map-circle';

基本用法

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

const Example = () => {
  const [visiable, setVisiable] = useState(true);
  const [enableEditing, setEnableEditing] = useState(false);
  const [strokeOpacity, setStrokeOpacity] = useState(0.9);
  function circleRef(props) {
    if (props && props.circle) {
      console.log('circle:', props.circle, props.map, props.BMap);
    }
  }
  return (
    <>
      <button onClick={() => setVisiable(!visiable)}>{visiable ? '隐藏' : '显示'}</button>
      <button onClick={() => setEnableEditing(!enableEditing)}>{enableEditing ? '取消编辑' : '编辑'}</button>
      <button onClick={() => setStrokeOpacity(0.7)}>透明度0.7</button>
      <button onClick={() => setStrokeOpacity(0.2)}>透明度0.2</button>
      <Map widget={['NavigationControl']} style={{ height: 350 }}>
        <Circle
          ref={circleRef}
          visiable={visiable}
          enableEditing={enableEditing}
          strokeOpacity={strokeOpacity}
          strokeWeight={1}
          center={{ lng: 121.455228, lat: 31.240257 }}
          radius={1000}
        />
        <Circle
          visiable={visiable}
          enableEditing={enableEditing}
          strokeOpacity={strokeOpacity}
          center={{ lng: 121.490298, lat: 31.229388 }}
          radius={1500}
        />
      </Map>
    </>
  );
}

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

export default Demo;

使用 hooks

circle, setCircle

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

const Example = () => {
  const [enableEditing, setEnableEditing] = useState(false);
  const [strokeOpacity, setStrokeOpacity] = useState(0.9);
  const divElm = useRef(null);
  const { setContainer, map } = useMap({
    widget: ['GeolocationControl', 'NavigationControl']
  });
  const { circle } = useCircle({ map,
    enableScrollWheelZoom: true, // 启用滚轮放大缩小,默认禁用
    enableEditing, strokeOpacity,
    center: { lng: 121.455228, lat: 31.240257 },
    radius: 1000,
  });
  useCircle({ map,
    strokeWeight: 1,
    center: { lng: 121.490298, lat: 31.229388 },
    radius: 1500,
  });

  useEffect(() => {
    if (divElm.current) {
      setContainer(divElm.current);
    }
  });

  useEffect(() => {
    if (map && circle) {
      if (enableEditing) {
        circle.setFillColor('red');
        circle.enableEditing();
      } else {
        circle.setFillColor('transparent');
        circle.disableEditing();
      }
    }
  }, [enableEditing]);

  useEffect(() => {
    if (map && circle) {
      circle.setStrokeOpacity(strokeOpacity);
    }
  }, [strokeOpacity]);

  return (
    <>
      <button onClick={() => setEnableEditing(!enableEditing)}>{enableEditing ? '取消编辑' : '开启编辑'}</button>
      <button onClick={() => setStrokeOpacity(0.7)}>透明度0.7</button>
      <button onClick={() => setStrokeOpacity(0.2)}>透明度0.2</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

参数说明类型默认值
center必填 圆形的中心点坐标。百度拾取坐标系统Point-
radius必填 设置圆形的半径,单位为米。number-
visiable覆盖物是否可见。boolean-
strokeColor圆形边线颜色String-
fillColor圆形填充颜色。当参数为空时,圆形将没有填充效果String-
strokeWeight圆形边线的宽度,以像素为单位Number-
strokeOpacity圆形边线透明度,取值范围0 - 1Number-
fillOpacity圆形填充的透明度,取值范围0 - 1Number-
strokeStyle圆形边线的样式,solid或dashedString-
enableMassClear是否在调用 map.clearOverlays 清除此覆盖物。Booleantrue
enableEditing是否启用线编辑。Booleanfalse
enableClicking是否响应点击事件。Booleantrue

事件

参数说明类型
onClick鼠标点击圆形后会触发此事件(event: { type: string, target: any, point: Point, pixel: Pixel }): void;
onDblClick鼠标双击圆形后会触发此事件(event: { type: string, target: any, point: Point, pixel: Pixel }): void;
onMouseDown鼠标在圆形上按下触发此事件(event: { type: string, target: any, point: Point, pixel: Pixel }): void;
onMouseUp鼠标在圆形释放触发此事件(event: { type: string, target: any, point: Point, pixel: Pixel }): void;
onMouseOut鼠标离开圆形时触发此事件(event: { type: string, target: any, point: Point, pixel: Pixel }): void;
onMouseOver当鼠标进入圆形区域时会触发此事件(event: { type: string, target: any, point: Point, pixel: Pixel }): void;
onRemove移除圆形时触发此事件(event: { type: string, target: any }): void;
onLineUpdate圆形覆盖物的属性发生变化时触发此事件(event: { type: string, target: any }): void;
2.7.1

4 months ago

2.7.0

5 months ago

2.6.3

5 months ago

2.6.2

9 months ago

2.6.1

12 months ago

2.6.0

1 year ago

2.5.5

1 year ago

2.5.4

1 year ago

2.5.3

2 years ago

2.5.0

2 years ago

2.5.2

2 years ago

2.5.1

2 years ago

2.3.0

2 years ago

2.1.2

2 years ago

2.2.0

2 years ago

2.1.1

2 years ago

2.4.0

2 years ago

2.0.7

2 years ago

2.0.8

2 years ago

2.1.0

2 years ago

2.0.6

2 years ago

2.0.5

3 years ago

2.0.3

3 years ago

2.0.4

3 years ago

2.0.2

3 years ago

2.0.1

3 years ago

2.0.0

3 years ago