作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 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/
我是一名优秀的程序员,十分优秀!