dymaptic.GeoBlazor.Core
dymaptic.GeoBlazor.Core.Model
DisplayFilter Class
Display filters limit which features of a layer are displayed.
ArcGIS Maps SDK for JavaScript
public class DisplayFilter :
System.IEquatable<dymaptic.GeoBlazor.Core.Model.DisplayFilter>
Inheritance System.Object 🡒 DisplayFilter
Implements System.IEquatable<DisplayFilter>
Constructors
DisplayFilter(string, Nullable, Nullable, string, string) Constructor
Display filters limit which features of a layer are displayed.
ArcGIS Maps SDK for JavaScript
public DisplayFilter(string? DisplayFilterId=null, System.Nullable<double> MaxScale=null, System.Nullable<double> MinScale=null, string? Title=null, string? Where=null);
Parameters
DisplayFilterId
System.String
The display filter identifier.
ArcGIS Maps SDK for JavaScript
MaxScale
System.Nullable<System.Double>
The maximum scale associated with the display filter.
default 0
ArcGIS Maps SDK for JavaScript
MinScale
System.Nullable<System.Double>
The minimum scale associated with the display filter.
default 0
ArcGIS Maps SDK for JavaScript
Title
System.String
A descriptive name or label that helps users identify and understand the purpose of the filter.
default “”
ArcGIS Maps SDK for JavaScript
Where
System.String
SQL-based where clause that filters the data to be rendered for display purposes.
ArcGIS Maps SDK for JavaScript
Properties
DisplayFilter.DisplayFilterId Property
The display filter identifier.
ArcGIS Maps SDK for JavaScript
public string? DisplayFilterId { get; set; }
Property Value
DisplayFilter.MaxScale Property
The maximum scale associated with the display filter.
default 0
ArcGIS Maps SDK for JavaScript
public System.Nullable<double> MaxScale { get; set; }
Property Value
System.Nullable<System.Double>
DisplayFilter.MinScale Property
The minimum scale associated with the display filter.
default 0
ArcGIS Maps SDK for JavaScript
public System.Nullable<double> MinScale { get; set; }
Property Value
System.Nullable<System.Double>
DisplayFilter.Title Property
A descriptive name or label that helps users identify and understand the purpose of the filter.
default “”
ArcGIS Maps SDK for JavaScript
public string? Title { get; set; }
Property Value
DisplayFilter.Where Property
SQL-based where clause that filters the data to be rendered for display purposes.
ArcGIS Maps SDK for JavaScript
public string? Where { get; set; }