根据给定的矢量数据集、分段字段表达式、分段模式、相应的分段参数和颜色渐变模式生成默认的标签专题图。
命名空间:
SuperMap.Mapping程序集: SuperMap.Mapping (in SuperMap.Mapping)
版本: dll
语法
C# |
---|
public static ThemeLabel MakeDefault( DatasetVector dataset, string rangeExpression, RangeMode rangeMode, double rangeParameter, ColorGradientType colorGradientType ) |
参数
- dataset
- Type: SuperMap.Data..::.DatasetVector
矢量数据集。
- rangeExpression
- Type: System..::.String
分段字段表达式。
- rangeMode
- Type: SuperMap.Mapping..::.RangeMode
分段模式。包括等距离分段法,平方根分段法,标准差分段法,对数分段法,等计数分段法,以及自定义距离法
- rangeParameter
- Type: System..::.Double
分段参数。当分段模式为等距离分段法,平方根分段法其中一种模式时,该参数为分段值;
当分段模式为标准差分段法的时候,该参数不起作用;
当分段模式为自定义距离时,该参数表示自定义距离。
- colorGradientType
- Type: SuperMap.Data..::.ColorGradientType
颜色渐变模式。
返回值
根据参数构造得到一个新的ThemeLabel的对象实例。示例
以下代码示范了如何根据给定的矢量数据集、分段字段表达式、分段模式、相应的分段参数和颜色渐变模式生成默认的标签专题图。
假设打开了一个工作空间workspace对象。
CopyC#
public void MakeThemeLabelMap2( DatasetVector targetDataset) { //制作标签专题图 ThemeLabel themeLabelMap = ThemeLabel.MakeDefault(targetDataset, "SmID", RangeMode.EqualInterval, 5, ColorGradientType.Rainbow); themeLabelMap.LabelExpression = "Country"; //显示 mapControl1.Map.Workspace = workspace; mapControl1.Map.Layers.Add(targetDataset, true); mapControl1.Map.Layers.Add(targetDataset, themeLabelMap, true); mapControl1.Map.Refresh(); }