2

Is it possible to display a Google Maps heatmap layer like this https://google-developers.appspot.com/maps/documentation/javascript/examples/layer-heatmap as a layer onto a custom OSMdroid Mapview?

Or is there a simple way to directly plot the heatmap-geopoints [{lat, lon, weight-value},..] as a layer onto the map?

4

1 回答 1

0

我发现了 Seth Golub 的这个不错的 Python 脚本 https://github.com/sethoscope/heatmap/blob/master/heatmap.py 将 lat、lon [weight] 值或 .gpx 列表转换为热图 - 很好自定义选项。

最重要的是,有一个 Andrew Harvey 的包装器,用于从您的文件中渲染图块 https://github.com/andrewharvey/OpenStreetMap-User-Edits-Heatmap/blob/master/render-heatmap-to-tiles.pl

我的第一次测试表明,我能够使用这些脚本在 Google 地图上创建类似的结果。

于 2012-11-13T23:31:36.937 回答