作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在关注 leafletjs 的 interactive choropleth map例如,我试图通过使用 GeoJson 对象的 resetStyle 方法和 Map 对象的 fitBounds 方法来添加交互。在传单中,这些方法是通过对相应对象的引用来调用的:
var map = L.map('map');
function zoomToFeature(e) {
map.fitBounds(e.target.getBounds());
}
var geojson;
// ... our listeners
geojson = L.geoJson(...);
function resetHighlight(e) {
geojson.resetStyle(e.target);
}
如何在 react-leaflet 中访问这些方法?从用户交互返回的对象中不存在这些方法。我也尝试从 react-leaflet 导出它们,但这也不起作用。
这是我的 jsfiddle .
我知道一个月前有人问过同样的问题,但是访问 this.refs.geojson.leafletElement.resetStyle(e.target)
的解决方案不再有效,因为 refs
不是 e.target
的属性,this
只是引用 e.target
。
最佳答案
一种方法是将“ref”属性附加到 GeoJSON 组件,然后将您的组件传递给您的事件处理程序。
JSFiddle:https://jsfiddle.net/thbh99nu/2/
<GeoJson data={statesData}
style={style}
onEachFeature={onEachFeature.bind(null, this)}
ref="geojson" />
// reset default style on mouseOut
function resetHighlight (component, e) {
// Just to show the ref is there during the event, i'm not sure how to specifically use it with your library
console.log(component.refs.geojson);
// geojsonresetStyle(e.target);
// how to encapsulate GeoJson component/object?
}
// `component` is now the first argument, since it's passed through the Function.bind method, we'll need to pass it through here to the relevant handlers
function onEachFeature (component, feature, layer) {
layer.on({
mouseover: highlightFeature,
mouseout: resetHighlight.bind(null, component),
click: zoomToFeature
});
}
关于javascript - React-leaflet:如何调用像resetStyle这样的GeoJson方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39646358/
我想画一张 map ,上面只画了几条路线。 我想要一个带有数字 1,..,n 的保管箱 当选择下拉框中的元素时,相应的路线会在 map 上突出显示。 我已经开始使用“传单”了。 为什么我的 reset
我是一名优秀的程序员,十分优秀!