python-visualization / python-visualization/folium
Blue Lines when using TimestampedGeoJson in Folium
还没有人认领这个 Issue。
- 主要语言
- Python
- 星标
- 7.4k
- 派生
- 2.3k
- 平均合并
- 17 小时 22 分钟
- 30 天内合并 PR
- 11
描述
Describtion
During the animation with the TimestampedGeoJson plugin in Folium, blue lines briefly appear along the route of the objects, causing undesired strain on the hardware.
To Reproduce
You can use the txt file and safe it as HTML and open it in your browser. At the timespamps 08:50:54 and 08:28:50 you can see the blue lines.
Expected behavior
The blue lines should not appear during the animation and the hardware should not be strained.
Environment:
- Browser: chrome
- Python version: 3.10.13
- folium version: 0.15.1
Additional context
To hide the lines, I replaced the following code in the HTML file (line 118):
style: function (feature) {
return feature.properties.style;
}
with the code:
style: function (feature) {
return {
opacity: 0.0
};
}
However, this does not reduce the hardware strain.
You can find an example Folium map animated_train_bug.txt (you can safe it as html and open it with chrome) and a video illustrating the issue attached (timestamp bug: 08:50:54 and 08:28:50).
Can you help making a fix for this issue please?
Uploading animation_rando_blue_lines.mp4…
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
从附加的 animated_train_bug.txt 开始,将其保存为 HTML,并检查第 118 行附近生成的 TimestampedGeoJson 代码。在 08:50:54 和 08:28:50 于 Chrome 中重现蓝色线条,然后跟踪动画和样式行为。当不应出现的线条不再出现,并且报告的硬件负载降低时,即表示完成。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- javascript, python
- 领域
- data-visualization, frontend
- Issue 类型
- 缺陷
- 难度
- 4/5
- 预计耗时
- 3-5 天
- 活跃度
- 停滞
- 描述清晰度
- 基本清楚
- 新手友好度
- 30/100