我正在使用Arcgis API 4.10
来显示总数。
让我们假设有一个客户的Map Server服务http://example.com:yyyy/somepath//MapServer/13
,所以我想通过使用服务和此服务的Number_of_SUM
之类的相关字段来显示客户总数。我该怎么办?
我得到了一些尝试使用此提示(https://developers.arcgis.com/javascript/latest/api-reference/esri-tasks-support-StatisticDefinition.html)的提示,但仍然停留在这里。
答案 0 :(得分:0)
一旦通过http://example.com:yyyy/somepath//MapServer/13/query
之类的端点获得了response from the API,就可以进行response.features.length
来获取要素数组的长度。
注意:此数组受MapService的“返回的最大要素”配置的限制。我相信默认值为1000个功能。