ScaleRangeDisplayFilter

constructor(name: String, whereClause: String, minScale: Double? = null, maxScale: Double? = null)

Creates a new ScaleRangeDisplayFilter with the specified name, where clause, and scale range.

Since

200.1.0

Parameters

name

a descriptive name for this display filter

whereClause

a SQL expression that defines which features are rendered.

minScale

the minimum scale at which this display filter is applied. If com.arcgismaps.mapping.view.MapView.scale or com.arcgismaps.mapping.Viewpoint.targetScale is less than or equal this value, the DisplayFilter will be applied. This value should be greater than maxScale. A value of null indicates this display filter is applied without an upper limit.

maxScale

the maximum scale at which this display filter is applied. If com.arcgismaps.mapping.view.MapView.scale or com.arcgismaps.mapping.Viewpoint.targetScale is greater than or equal this value, the DisplayFilter will be applied. This value should be less than minScale. A value of null indicates this display filter is applied without a lower limit.