-
predominantCategories
(params)
{Promise<PredominantCategoriesResult>}
根据给定的一组竞争数字字段确定图层的主要类别,并返回属于每个类别的要素数。
参数:
规格:类型 说明 params Object有关每个参数的详细信息,请参见下表。
规格:为给定的
fields
集生成主要类别的层。用于确定主要类别的数字字段数组。这些字段必须都是数字字段,并且它们必须是竞争的或互补的(例如,按家庭使用的语言计算的人口总数,或按裁剪类型划分的收获面积,或候选人或政党的选举结果)。
可选的 将在其中呈现要素的视图。
signal可选的 允许可取消的请求。如果取消,promise 将被拒绝,并出现名为
AbortError
的错误。另见AbortController。返回:
类型 说明 Promise<PredominantCategoriesResult> 返回解析为 PredominantCategoriesResult 的 Promise。 例子:
predominantCategories({ layer: featureLayer, fields: [ "corn_acres", "cotton_acres", "wheat_acres", "soybeans_acres", "vegetables_acres" ], view: mapView }).then(function(stats){ console.log(stats.predominantCategoryInfos); });
基本信息
以下是所在类或对象的基本信息。
AMD:
require(["esri/smartMapping/statistics/predominantCategories"], (predominantCategories) => { /* code goes here */ });
ESM:
import predominantCategories from "@arcgis/core/smartMapping/statistics/predominantCategories";
函数:
esri/smartMapping/statistics/predominantCategories
自从:用于 JavaScript 4.13 的 ArcGIS API
用法说明
predominantCategories.predominantCategories
函数(或属性)的定义如下:
相关用法
- JavaScript ArcGIS predominance.createRenderer用法及代码示例
- JavaScript ArcGIS predominance.getSchemeByName用法及代码示例
- JavaScript ArcGIS predominanceUtils.getPredominanceExpressions用法及代码示例
- JavaScript ArcGIS predominance.cloneScheme用法及代码示例
- JavaScript ArcGIS predominance.getSchemes用法及代码示例
- JavaScript ArcGIS predominance.getSchemesByTag用法及代码示例
- JavaScript ArcGIS promiseUtils.eachAlways用法及代码示例
- JavaScript ArcGIS promiseUtils.isAbortError用法及代码示例
- JavaScript ArcGIS promiseUtils.debounce用法及代码示例
- JavaScript ArcGIS promiseUtils.create用法及代码示例
- JavaScript ArcGIS promiseUtils.resolve用法及代码示例
- JavaScript ArcGIS print.execute用法及代码示例
- JavaScript ArcGIS promiseUtils.reject用法及代码示例
- JavaScript promise reject()用法及代码示例
- JavaScript ArcGIS projection.load用法及代码示例
- JavaScript ArcGIS projection.getTransformations用法及代码示例
- JavaScript ArcGIS promiseUtils.createAbortError用法及代码示例
- JavaScript ArcGIS projection.project用法及代码示例
- JavaScript parseInt()用法及代码示例
- JavaScript parseFloat()用法及代码示例
- JavaScript performance.now()用法及代码示例
- JavaScript ArcGIS SceneView double-click事件用法及代码示例
- JavaScript ArcGIS geometryEngineAsync.overlaps用法及代码示例
- JavaScript ArcGIS Expand.when用法及代码示例
- JavaScript ArcGIS Sublayer.JoinTableDataSource用法及代码示例
注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 predominantCategories.predominantCategories。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。