使react-leaflet map组件自行调整大小以适应可用空间

时间:2017-01-15 11:36:49

标签: react-leaflet

设置Map组件的宽度有效,但高度似乎只响应绝对大小(以像素为单位)。

是否可以让地图控件自动消耗父元素中的可用空间?

3 个答案:

答案 0 :(得分:5)

我能够创建一个传递组件状态值的组件,用于映射的高度。我创建了一个辅助函数,可以调整高度以使其全部响应。

...

export default class MapContainer extends React.Component {

  updateDimensions() {
    const height = window.innerWidth >= 992 ? window.innerHeight : 400
    this.setState({ height: height })
  }

  componentWillMount() {
    this.updateDimensions()
  }

  componentDidMount() {
    window.addEventListener("resize", this.updateDimensions.bind(this))
  }

  componentWillUnmount() {
    window.removeEventListener("resize", this.updateDimensions.bind(this))
  }

  ...

  render() {
    ...
    return (
      <div class="map-container" style={{ height: this.state.height }}>
        <Map>
          ...
        </Map>
      </div>
    )
  }
}

答案 1 :(得分:2)

我使用react-container-dimensions component解决了这个问题,它将宽度/高度作为道具传递给其子项:

<div className="div that can resize""
ContainerDimensions>
<MyMapContainer/>
</ContainerDimensions>
</div>

...

style.width = Math.floor(this.props.width);                                                                                                                                                                                                                                                                                              
return (                                                                                                                                                                          
  <Map style={style}

答案 2 :(得分:1)

我通过在我的 .css 文件中将传单容器的高度设置为 100% 来解决这个问题。

.leaflet-container {
    height: 100%;
}

我的 Map 组件如下所示:

const Map = () => {

    return (
        <MapContainer center={[51.4381, 5.4752]} zoom={10} >
            <TileLayer
                maxZoom='20'
                attribution='&copy; <a href="http://osm.org/copyright">OpenStreetMap</a> contributors'
                url="https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"
            />
        </MapContainer> 
    )
}

export default Map;