我试图将React-Leaflet合并到我的创建React应用程序中。我能够在基本地图上覆盖GeoJSON数据,但是我不能在这个层上注册点击。
在调查这个问题时,我发现了以下JSFIDLE,https://jsfiddle.net/n7jmqg1s/6/,它在单击形状时注册事件,onEachFeature函数证明了这一点:
onEachFeature(feature, layer) {
console.log(arguments)
const func = (e)=>{console.log("Click")};
layer.on({
click: func
});
}
我尝试将其复制并粘贴到我的响应应用程序中,但它在那里不起作用。我唯一改变的是代替窗户。反应/窗口。LeafletReact我使用了es6导入。我不认为这会引起问题,但我想这是可能的。
我查看了onEachFeature函数的参数。在JSFIDLE中,我得到了两个参数——特性和层数据。但是,在我复制的示例中,我得到了3个参数,前两个参数为空,第三个参数包含一个包含许多内容的对象(enqueueCallback:(publicInstance,callback,callerName))
我意识到这有点含糊不清,但我希望这个问题很容易被识别为一个误解或传单。我认为这与我没有传递正确的范围或者没有直接操作DOM之类的事实有关。但我不确定。我将非常感谢任何帮助。
以下是我的组件代码:
import React from 'react';
import { Map, TileLayer, Marker, Popup, GeoJSON } from 'react-leaflet';
export default class SimpleExample extends React.Component {
constructor() {
super();
this.state = {
lat: 51.505,
lng: -0.09,
zoom: 8,
};
}
onEachFeature = (feature, layer) => {
layer.on({
click: this.clickToFeature.bind(this)
});
}
clickToFeature = (e) => {
var layer = e.target;
console.log("I clicked on " ,layer.feature.properties.name);
}
render() {
const position = [this.state.lat, this.state.lng];
const geojsonObject = {
'type': 'FeatureCollection',
'crs': {
'type': 'name',
'properties': {
'name': 'EPSG:3857'
}
},
'features': [{
'type': 'Feature',
'geometry': {
'type': 'MultiPolygon',
'coordinates': [
[[[-0.09, 51.505], [-0.09, 51.59], [-0.12, 51.59], [-0.12, 51.505]]],
[[[-0.09, 51.305], [-0.09, 51.39], [-0.12, 51.39], [-0.12, 51.305]]]
]
}
}]
};
return (
<Map center={position} zoom={this.state.zoom} ref='map'>
<TileLayer
attribution='© <a href="http://osm.org/copyright">OpenStreetMap</a> contributors'
url='http://{s}.tile.osm.org/{z}/{x}/{y}.png'
/>
<GeoJSON
ref="geojson"
data={geojsonObject}
onEachFeature={this.onEachFeature}
/>
</Map>
);
}
}
首先在渲染函数中定义地图:
<LeafletMap
ref='map'>
<GeoJson
ref="geojson"
data={this.props.data}
onEachFeature={this.onEachFeature.bind(this)}
/>
</LeafletMap>
然后定义一个列出所有侦听器的onEachFeature函数
onEachFeature(feature, layer) {
layer.on({
mouseover: this.highlightFeature.bind(this),
mouseout: this.resetHighlight.bind(this),
click: this.clickToFeature.bind(this)
});
}
然后定义每个事件句柄函数,例如单击函数或鼠标悬停
clickToFeature(e) {
var layer = e.target;
console.log("I clicked on " + layer.feature.properties.name);
}
如果看不到传单标签代码以及如何调用onEachFeature,我就无法真正帮助您了解ES6示例。您可能不像在JSFIDLE示例中那样调用它
onEachFeature={this.onEachFeature}
对于ES6,您应该使用以下内容:
onEachFeature = (feature, layer) => {
layer.on({
click: this.clickToFeature
});
}
与此相反:
onEachFeature = (feature, layer) => {
layer.on({
click: this.clickToFeature.bind(this)
});
}