6.0.3 • Published 1 month ago

@uiw/react-amap-polyline-editor v6.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
1 month ago

PolylineEditor 编辑器

Buy me a coffee npm version Downloads

Polyline 编辑器,此组件只支持AMap JS API v2.0 及以上版本。想在低版本 AMap (如 V1.4.15及以下)中使用拆线编辑功能可以查看 PolyEditor 编辑器AMap API

import { PolylineEditor } from '@uiw/react-amap';
// 或者单独安装使用
import { PolylineEditor } from '@uiw/react-amap-polyline-editor';

基本用法

注意,需要加载 <APILoader plugin="AMap.PolylineEditor">,需要加载 AMap.PolylineEditor 插件,如果点击进入当前页面,需要 刷新 页面。

<APILoader plugin="AMap.PolylineEditor">
import ReactDOM from 'react-dom';
import React, { useState, useRef } from 'react';
import { Map, APILoader, Polyline, PolylineEditor } from '@uiw/react-amap';

const Example = () => {
  // 多边形轮廓线的节点坐标数组
  const path = [
    [116.403322, 39.920255],
    [116.410703, 39.897555],
    [116.402292, 39.892353],
    [116.389846, 39.891365],
  ];
  const [show, setShow] = useState(true);
  const [active, setActive] = useState(false);
  const [polylinePath,setPolylinePath]=useState(path);
  
  return (
    <>
      <button onClick={() => setShow(!show)}>
        {show ? '隐藏' : '显示'}
      </button>
      <button onClick={() => setActive(!active)}>
        {active ? '结束' : '开始'}编辑
      </button>
      <div style={{ width: '100%', height: '500px' }}>
        <Map zoom={14} center={[116.400274, 39.905812]}>
          <Polyline
            visiable={show}
            path={polylinePath}
            strokeColor="#FF33FF"
            strokeWeight={6}
            strokeOpacity={0.2}
            fillOpacity={0.4}
            fillColor="#1791fc"
            zIndex={50}
          >
            <PolylineEditor
              active={active}
              onEnd={(e) => {
                console.log('onEnd:>>',e.target.getPath());
                setPolylinePath(e.target.getPath())
              }}
              onAdjust={() => {
                console.log('onAdjust:>>')
              }}
              onAdd={() => {
                console.log('onAdd:>>')
              }}
              onAddnode={() => {
                console.log('onAddnode:>>')
              }}
              onRemovenode={() => {
                console.log('onRemovenode:>>')
              }}
            />
          </Polyline>
        </Map>
      </div>
    </>
  );
}

const Mount = () => (
  <APILoader akey="a7a90e05a37d3f6bf76d4a9032fc9129" plugin="AMap.PolylineEditor">
    <Example />
  </APILoader>
);

export default Mount;

Props

参数说明类型默认值
active是否开启编辑功能。boolean-
onAddnode增加一个节点时触发此事件(data :{target: Polyline, lnglat: Lnglat, pixel: Pixel}): void;
onRemovenode移除一个节点时触发此事件(data :{target: Polyline, lnglat: Lnglat, pixel: Pixel}): void;
onAdjust调整折线上某个点时触发此事件(data :{target: Polyline, lnglat: Lnglat, pixel: Pixel}): void;
onAdd创建一个覆盖物之后触发该事件,target即为创建对象。当editor编辑对象为空时,调用open接口,再点击一次屏幕就会创建新的覆盖物对象(data :{target: Polyline}): void;
onEnd调用close之后触发该事件,target即为编辑后的覆盖物对象(data :{target: Polyline}): void;
6.0.3

1 month ago

6.0.2

3 months ago

6.0.1

5 months ago

6.0.0

5 months ago

5.0.6

10 months ago

5.0.5

10 months ago

5.0.10

9 months ago

5.0.11

9 months ago

5.0.12

8 months ago

5.0.13

8 months ago

5.0.14

8 months ago

5.0.15

7 months ago

5.0.16

7 months ago

5.0.17

7 months ago

5.0.18

6 months ago

5.0.19

6 months ago

5.0.20

5 months ago

5.0.21

5 months ago

5.0.9

9 months ago

5.0.8

10 months ago

5.0.7

10 months ago

5.0.4

11 months ago

5.0.3

11 months ago

5.0.2

11 months ago

5.0.1

1 year ago

5.0.0

1 year ago

4.5.3

1 year ago

4.6.0

1 year ago

4.5.0

1 year ago

4.4.1

1 year ago

4.4.0

1 year ago

4.5.2

1 year ago

4.5.1

1 year ago

4.4.2

1 year ago

4.3.1

1 year ago

4.3.0

1 year ago

4.2.2

1 year ago

4.2.1

1 year ago

4.2.0

1 year ago

4.1.1

1 year ago

4.1.0

1 year ago

4.0.7

1 year ago

4.0.6

1 year ago