我有简单的组件在地图上选择点,然后显示与此点相关的一些GeoJSON数据:
import React, { Component } from 'react';
import { Map, Marker, TileLayer, GeoJSON } from 'react-leaflet';
import 'leaflet/dist/leaflet.css';
import { connect } from 'react-redux';
import './style.css';
import { setPoint, fetchData } from '../../actions/map';
@connect(store => {
return {
map: store.map
}
})
class MyMap extends Component {
mapClick(e) {
this.props.dispatch(setPoint(e.latlng));
this.props.dispatch(fetchData(e.latlng));
}
render() {
const marker = () => {
if(this.props.map.point) {
return <Marker position={this.props.map.point} />;
}
};
const data = () => {
if(this.props.map.data.length > 0) {
const json = this.props.map.data;
return <GeoJSON data={json} />
}
}
return (
<div className='my-map'>
<div className='my-map__map-container'>
<Map center={this.props.map.center} zoom={13} onClick={this.mapClick.bind(this)}>
<TileLayer url='http://{s}.tile.osm.org/{z}/{x}/{y}.png' attribution='© <a href="http://osm.org/copyright">OpenStreetMap</a> contributors' />
{marker()}
{data()}
</Map>
</div>
<div className='my-map__debug'>
{JSON.stringify(this.props.map)}
</div>
</div>
);
}
}
export default MyMap;
第一次,我点击地图标记,然后经过一段时间(XHR请求)GeoJSON呈现。但是下次我点击地图时,我只有标记位置的变化,但旧的GeoJSON数据仍保留在地图上。组件的调试部分正确呈现,并显示正确的数据。如何强制react-leaflet
重新渲染我的GeoJSON数据,或者我做错了什么?
UPD:
在询问react-leafet
的作者之后,我发现了如何达到预期的行为。
要强制反应重新渲染我的GeoJSON数据,我需要将一些data-uniq键传递给组件:
<GeoJSON key={keyFunction(this.props.map.data.json)} data={this.props.map.data.json} />
https://github.com/PaulLeCam/react-leaflet/issues/332#issuecomment-304228071
答案 0 :(得分:8)
在询问react-leafet
的作者之后,我发现了如何达到预期的行为。
要强制反应重新渲染我的GeoJSON数据,我需要将一些data-uniq键传递给组件:
<GeoJSON key={keyFunction(this.props.map.data.json)} data={this.props.map.data.json} />
https://github.com/PaulLeCam/react-leaflet/issues/332#issuecomment-304228071
答案 1 :(得分:2)
从每次调用render方法时创建的函数调用marker和geojson都不会非常高效。此外,我认为您可能需要为地图元素添加一个键,以便它们可以正确地重复使用和更新。
试试这个:
render() {
return (
<div className='my-map'>
<div className='my-map__map-container'>
<Map center={this.props.map.center} zoom={13} onClick={this.mapClick.bind(this)}>
<TileLayer url='http://{s}.tile.osm.org/{z}/{x}/{y}.png' attribution='© <a href="http://osm.org/copyright">OpenStreetMap</a> contributors' />
{this.props.map.point &&
<Marker key='my-marker' position={this.props.map.point} />
}
{this.props.map.data.length > 0 &&
<GeoJSON key='my-geojson' data={this.props.map.data.json} />
}
</Map>
</div>
<div className='my-map__debug'>
{JSON.stringify(this.props.map)}
</div>
</div>
);
}
答案 2 :(得分:2)
import hash from 'object-hash';
render() {
let blah = this.state; //or this.props or whatever
<GeoJSON
key={hash(blah)}
data={blah} />