BuildingLevel
esri/widgets/BuildingExplorer/BuildingLevel
Provides information for the building level filter, such as the value selected by the user or the minimum and maximum allowed values.
Property Overview
Name | Type | Summary | Class | |
---|---|---|---|---|
Number[] | List of all the values which are allowed for the filter. more details | more details | BuildingLevel | |
String | The name of the class. more details | more details | Accessor | |
Boolean | Whether the filter is enabled. more details | more details | BuildingLevel | |
Boolean | Whether the next value can be selected. more details | more details | BuildingLevel | |
Boolean | Whether the previous value can be selected. more details | more details | BuildingLevel | |
Number | The maximum value allowed for the filter. more details | more details | BuildingLevel | |
Number | The minimum value allowed for the filter. more details | more details | BuildingLevel | |
Number | The value which is currently set on the filter. more details | more details | BuildingLevel |
Property Details
List of all the values which are allowed for the filter.
The name of the class. The declared class name is formatted as
esri.folder.className
.
- enabled Booleanreadonly
Whether the filter is enabled. If false, the filter's expression won't be used to filter a BuildingSceneLayer.
- Default Value:false
- hasNext Booleanreadonly
Whether the next value can be selected.
- hasPrevious Booleanreadonly
Whether the previous value can be selected.
- max Numberreadonly
The maximum value allowed for the filter.
- min Numberreadonly
The minimum value allowed for the filter.
- value Numberreadonly
The value which is currently set on the filter.
Method Overview
Name | Return Type | Summary | Class | |
---|---|---|---|---|
Removes the filter by setting enabled to | more details | BuildingLevel | ||
String|null | If the field that is used for filtering has a coded value domain, the label for the value can be used to be displayed in a tooltip or in the widget UI. more details | more details | BuildingLevel | |
Selects the next value, if available. more details | more details | BuildingLevel | ||
Selects the previous value, if available. more details | more details | BuildingLevel | ||
Selects the specified value for the filter. more details | more details | BuildingLevel |
Method Details
- clear()
Removes the filter by setting enabled to
false
.
If the field that is used for filtering has a coded value domain, the label for the value can be used to be displayed in a tooltip or in the widget UI. This method returns the label corresponding to a certain value.
Parameter:value NumberA filter value.
Returns:Type Description String | null The label corresponding to the filter value.
- next()
Selects the next value, if available. If enabled is
false
, the first allowed value is selected.
- previous()
Selects the previous value, if available. If enabled is
false
, the last allowed value is selected.