6

我正在尝试在由react-leaflet-draw.

这是我的尝试:

_onCreate(e) {
        var layer = e.layer
        layer.bindPopup(
            <Content>
                <Label>Flower Name</Label>
                <Input type="text" placeholder="Flower Name"/>
                <Label>Flower Index</Label>
                <Input type="number" placeholder="Flower Index"/>
                <Label>Flower Radius</Label>
                <Input type="number" placeholder="Flower Radius"/>
                <Button color="isSuccess" >Add Flower</Button>
            </Content>
        )
    }

组件由react-bulma提供。

但我尝试这种方法我得到以下错误: Uncaught TypeError: Failed to execute 'appendChild' on 'Node': parameter 1 is not of type 'Node'.

如果我将内容设为简单字符串,我会得到纯 HTML 字段和按钮,但无法访问外部函数或实际的 Bulma 组件。

本质上,我希望能够将新形状保存在数据库中。

从简短的在线搜索看来,这是一个限制react-leaflet,但我想先在这里检查。

此外,这是为新创建的形状设置弹出窗口的最佳方式吗?我很难将常规leaflet-draw方法翻译成react-leaflet-draw.

4

1 回答 1

6

可以在 react-leaflet Popup 中包含 react 组件。在您的示例中,您使用的是传单的 API,而您应该使用 react-leaflet 的组件。请参阅以下单击地图后显示弹出窗口的示例:

const React = window.React;
const { Map, TileLayer, Marker, Popup } = window.ReactLeaflet;

let numMapClicks = 0

class SimpleExample extends React.Component {
    state = {}

  addPopup = (e) => {
    this.setState({
      popup: { 
        key: numMapClicks++,
        position: e.latlng
      }
    })
  }

  handleClick = (e) => {
    alert('clicked')
  }

  render() {
    const {popup} = this.state
    return (
      <Map 
        center={[51.505, -0.09]} 
        onClick={this.addPopup}
        zoom={13} 
        >
        <TileLayer
          attribution='&copy; <a href="http://osm.org/copyright">OpenStreetMap</a> contributors'
          url='http://{s}.tile.osm.org/{z}/{x}/{y}.png'
        />
        {popup &&
          <Popup 
            key={`popup-${popup.key}`}
            position={popup.position}
            >
            <div>
              <p>A pretty CSS3 popup. <br/> Easily customizable.</p>
              <button onClick={this.handleClick}>Click Me!</button>
            </div>
          </Popup>
        }
      </Map>
    );
  }
}

window.ReactDOM.render(<SimpleExample />, document.getElementById('container'));

这是一个jsfiddle来演示。

于 2017-03-20T22:40:25.880 回答