React Amap 覆盖物

{points && points.length >= 3 && ( )}

这里可以直接放入Polygon组件
然后

this.toolEvents = {
      created: tool => {
        console.log(tool);
        self.tool = tool;
        self.tool.polygon();
      },
      draw({ obj }) {
        self.drawWhat(obj);
      }
    };

然后在constructor里面的toolEvents里,created后,直接调用self.tool.polygon();就能开始绘多边形了

你可能感兴趣的:(React Amap 覆盖物)