PointCloudFilter
require(["esri/layers/pointCloudFilters/PointCloudFilter"], function(PointCloudFilter) { /* code goes here */ });
esri/layers/pointCloudFilters/PointCloudFilter
Point cloud filters are used to hide points that do not satisfy the filter criteria.
There are two types of filters that can be assigned to PointCloudLayer.filters:
PointCloudValueFilter is useful for filtering points based on their classification value. If only the points that represent ground and buildings should be displayed, the following filter can be set:
const pcLayer = new PointCloudLayer({
...,
filters: [{
type: "value",
field: "CLASS_CODE",
mode: "include",
// values include ground(2) and building(6)
values: [2, 6]
}]
});
PointCloudReturnFilter is used to filter points based on the return value stored with each point in the RETURNS
field. The following filter can be set to display only the points that represent the highest feature in a landscape:
const pointCloudLayer = new PointCloudLayer({
...,
filters: [{
type: "return",
field: "RETURNS",
values: ["firstOfMany", "single"]
}]
});
Filters can also be combined by setting several filters on one layer. Only points that satisfy all filters are displayed.
- See also:
Constructors
- new PointCloudFilter(properties)
- Parameter:properties Objectoptional
See the properties for a list of all the properties that may be passed into the constructor.
Property Overview
Name | Type | Summary | Class | |
---|---|---|---|---|
String | The name of the class. more details | more details | Accessor | |
String | The field used for applying the filter. more details | more details | PointCloudFilter | |
String | The type of filter. more details | more details | PointCloudFilter |
Property Details
The name of the class. The declared class name is formatted as
esri.folder.className
.
- fieldString
The field used for applying the filter.
- typeStringreadonly
The type of filter.
Possible values: value | bitfield | return
Method Overview
Name | Return Type | Summary | Class | |
---|---|---|---|---|
* | Creates a new instance of this class and initializes it with values from a JSON object generated from a product in the ArcGIS platform. more details | more details | PointCloudFilter | |
Object | Converts an instance of this class to its ArcGIS portal JSON representation. more details | more details | PointCloudFilter |
Method Details
- fromJSON(json){*}static
Creates a new instance of this class and initializes it with values from a JSON object generated from a product in the ArcGIS platform. The object passed into the input
json
parameter often comes from a response to a query operation in the REST API or a toJSON() method from another ArcGIS product. See the Using fromJSON() topic in the Guide for details and examples of when and how to use this function.Parameter:json ObjectA JSON representation of the instance in the ArcGIS format. See the ArcGIS REST API documentation for examples of the structure of various input JSON objects.
Returns:Type Description * Returns a new instance of this class.
- toJSON(){Object}
Converts an instance of this class to its ArcGIS portal JSON representation. See the Using fromJSON() topic in the Guide for more information.
Returns:Type Description Object The ArcGIS portal JSON representation of an instance of this class.