英文:
Map visualization library with scrolling
问题
我正在尝试构建一个应用程序,它可以显示地图,可以缩放到地球的不同部分,并根据实时流数据显示动画数据。我对地理空间可视化相对陌生,到目前为止,我能够找到的每个可视化库似乎只允许在静态地图上显示动画数据。有些库,如Folium,似乎允许放大和缩小,但不能移动位置。
我正在寻找一个可以做到这一点的Python库/框架的建议。我使用Python是因为我了解它,但如果有其他语言在这方面表现更好,我也愿意接受那些建议。在这一点上,地图不一定需要是交互式的,尽管保留这个选项会很好。
英文:
I'm trying to build an app that displays a map that can zoom to different parts of the globe and display animated data based on live streaming data. I'm fairly new to geospatial visualization, and every visualization library I've been able to find only allows animated data on top of a static map. Some like Folium seem to allow zooming in and out but not moving the location.
I'm looking for recommendations for a python library/framework that can do this. I'm using python because that's what I know, but if there's another language that does this much better I would accept those suggestions as well. The map does not have to be interactive at this point, although keeping that option open would be nice.
答案1
得分: 2
Foliim 似乎是正确的选择。
它容易在Python中包含,并允许缩放。
查看详细指南 这里
英文:
Foliim seems to be the right option.
It is easy to include in python and allows zoooming
See nice guide here
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论