gpt4 book ai didi

javascript - React-leaflet:如何调用像resetStyle这样的GeoJson方法?

转载 作者:行者123 更新时间:2023-11-29 17:55:20 24 4
gpt4 key购买 nike

我正在关注 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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com