如何通过按钮清除reactjs中的传单地图?

How to clear leaflet map in reactjs by button?

我想通过点击一个按钮来清除我的传单地图...如何操作...我想清除地图上所有绘制的形状,以便地图清晰

这是我在return语句中传单地图的代码:

 <Map
            key={this.state.keyMAP}
            style={{ height: "50vh" }}
            center={position}
            zoom={13}
            onClick={this.handleClick}
            onCreate={this.onCreate}
            onLocationfound={this.handleLocationFound}
          >
            {/* startDirectly */}

            <TileLayer
              attribution='&copy; <a href="http://osm.org/copyright">OpenStreetMap</a> contributors'
              url="http://{s}.tile.osm.org/{z}/{x}/{y}.png"
              layers="NDVI"
              // baseUrl="https://services.sentinel-hub.com/ogc/wms/bb1c8a2f-5b11-42bb-8ce4-dbf7f5300663"
            />

            <FeatureGroup>
              {viewMap && (
                <EditControl
                  position="topleft"
                  onEdited={this._onEditPath}
                  onCreated={this.onCreate}
                  onDeleted={this._onDeleted}
                  onMounted={this._mounted}
                  onEditStart={this._onEditStart}
                  onEditStop={this._onEditStop}
                  onDeleteStart={this._onDeleteStart}
                  onDeleteStop={this._onDeleteStop}
                  draw={{
                    rectangle: false,
                    marker: false,
                    circleMarker: false,
                    circle: false,
                    circlemarker: false,
                  }}
                />
              )}
            </FeatureGroup>
          </Map>

按钮:

 <button
            className="waves-effect waves-light btn"
            onClick={this.resetMap}
          >
            Clear map
          </button>

清除方法:

resetMap() {
    console.log("Reset");
  }

我的组件的完整代码:

https://github.com/SoilViews/SoilViews/blob/master/src/components/dashboard/Dashboard.js

我将提出两种方案,您可以选择最适合您的方案。你只需要在 React 中创建你的 map/feature 组的 DOM 引用(取决于选择的方法)。 如何创建参考:

在您的构造函数中,插入以下行:

 this.mapRef = React.createRef(); // Create a Map reference

 this.fgRef = React.createRef(); // Create a Feature group reference

然后在您的 <Map><FeatureGroup> 组件中,您应该相应地添加以下属性:

<Map ref={this.mapRef} key={this.state.keyMAP} ....rest of the code

<FeatureGroup ref={this.fgRef}> {viewMap && ( ....rest of the code

  1. 如果选择地图清除方式,可以这样进行:

    function clearMap() {
      const map = this.mapRef.current.leafletElement;
      map.eachLayer(function (layer) {
        map.removeLayer(layer);
      });
    }
    
  2. 或者,如果您选择要素组方法:

    function clearFeatureGroup() {
        const fg = this.fgRef.current.leafletElement;
        fg.clearLayers();
     }
    

最后,在你的按钮中你可以调用相应的方法:

<button onClick={clearMap}>
   Clear!
</button>

<button onClick={clearFeatureGroup}>
   Clear!
</button>