需要热图功能

时间:2018-11-26 09:14:51

标签: android heatmap

使用的图书馆:https://github.com/moagrius/TileView/

我正在使用尺寸为1825 * 1650的单个图像,以便在像这样的图块视图中显示我的平面图。我在图像的某些点(x,y)上添加了标记。效果很好。但是现在我如何才能在此平铺视图上添加热图功能。谁能帮忙吗?

tileView = new TileView(this);
findViewById(R.id.main_tile_layout)).addView(tileView);
tileView.setId(R.id.tile_view);
tileView.setSize(1825, 1650);
tileView.setScale(0,2);
tileView.addDetailLevel( 1.000f, "tiles/floorplan_0/125/%d_%d.png");

这是我的活动布局代码。

<RelativeLayout
android:id="@+id/main_tile_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/toolbar">

</RelativeLayout>

现在我想将HeatMap功能添加到tileview中以显示类似https://i.stack.imgur.com/rczhi.pnghttps://www.espatial.com/wp-content/uploads/Hot-Spot-Heat-Map-2.jpg

任何帮助将不胜感激

0 个答案:

没有答案