根据给定的点记录集和参数设置制作一幅网格聚合图,也就是将给定的点数据以网格聚合图的渲染方式进行显示。

命名空间:  SuperMap.Mapping
程序集:  SuperMap.Mapping (in SuperMap.Mapping)
版本: dll

语法

C#
public LayerGridAggregation AddGridAggregation(
	Recordset recordset,
	Color maxColor,
	Color minColor
)

参数

recordset
Type: SuperMap.Data..::.Recordset
参与制作网格聚合图的数据,必须为点对象。
maxColor
Type: System.Drawing..::.Color
网格单元统计值最大值对应的颜色,网格聚合图将通过maxColor和minColor确定渐变的颜色方案,然后基于网格单元统计值大小排序,对网格单元进行颜色渲染。
minColor
Type: System.Drawing..::.Color
网格单元统计值最小值对应的颜色,网格聚合图将通过maxColor和minColor确定渐变的颜色方案,然后基于网格单元统计值大小排序,对网格单元进行颜色渲染。

返回值

返回网格聚合图图层对象。

请参见