gpt4 book ai didi

javascript - 如何在 react-leaflet 中动态更改 Circle 组件的颜色 Prop ?

转载 作者:行者123 更新时间:2023-12-05 00:35:31 25 4
gpt4 key购买 nike

我是 react 传单的新手。所以在下面的代码中,我没有找到问题所在。为什么 颜色 填充颜​​色 中的属性未更新<圈/> 来自 react-leaflet 的组件。但是当我在做 时console.log(casesTypeColors[casesType].hex) 值在 时更新案例类型 变化,但它没有反射(reflect)在屏幕上。但其他属性正在更新。所以,请帮助我了解我在哪里做错了。提前致谢。

import { Circle } from "react-leaflet";
const casesTypeColors = {
cases: {
hex: "#CC1034",
rgb: "rgb(204, 16, 52)",
half_op: "rgba(204, 16, 52, 0.5)",
multiplier: 800,
},
recovered: {
hex: "#7dd71d",
rgb: "rgb(125, 215, 29)",
half_op: "rgba(125, 215, 29, 0.5)",
multiplier: 1200,
},
deaths: {
hex: "#fb4443",
rgb: "rgb(251, 68, 67)",
half_op: "rgba(251, 68, 67, 0.5)",
multiplier: 2000,
},
};
// Draw circles on the map with interactive tooptip
export const showDataOnMap = (data, casesType = "cases") =>
data.map((country, index) => (
<Circle
key={index}
center={[country.countryInfo.lat, country.countryInfo.long]}
fillOpacity={0.4}
color={casesTypeColors[casesType].hex}
fillColor={casesTypeColors[casesType].hex}
radius={
Math.sqrt(country[casesType] / 10) *
casesTypeColors[casesType].multiplier
}
>
</Circle>
));

最佳答案

在 showDataOnMap 函数中写入:

<Circle pathOptions={{color: casesTypeColors[casesType].hex,
fillColor: casesTypeColors[casesType].hex }}>
代替
<Circle color={casesTypeColors[casesType].hex}
fillColor={casesTypeColors[casesType].hex}>

关于javascript - 如何在 react-leaflet 中动态更改 Circle 组件的颜色 Prop ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65115290/

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