import OrderByInfo from "@arcgis/core/layers/support/OrderByInfo.js";const OrderByInfo = await $arcgis.import("@arcgis/core/layers/support/OrderByInfo.js");- Inheritance:
- OrderByInfo→
Accessor
- Since
- ArcGIS Maps SDK for JavaScript 4.21
Class that allows you to define the drawing order of features in a MapView. Draw order can be defined by a number or date field value or an Arcade expression.
Example
// Draws features in the view so that features with larger population// values are rendered on top of larger features.const orderBy = new OrderByInfo({ field: "POPULATION", order: "descending"});
layer.orderBy = [orderBy];Constructors
Constructor
Parameters
| Parameter | Type | Description | Required |
|---|---|---|---|
| properties | | |
Properties
order
- Type
- "ascending" | "descending"
The sort order. If ascending, then features with smaller data values (they usually have
smaller symbols in size visualizations) will be drawn on top of features with larger data values.
If descending, then features with larger data values (usually larger symbols in size
visualizations) will be drawn on top of features with smaller data values. If date values are
used, then ascending means features with older values will be drawn on top of features with
more recent dates. A descending order for dates indicates features with more
recent values will be drawn on top of features with older values.
- Default value
- "ascending"
valueExpression
An Arcade expression
following the specification defined by the Arcade Feature Z Profile.
Expressions may reference field values using the $feature profile variable and must return
a number or a date representing the z-value used to sort features.
Methods
fromJSON
- Signature
-
fromJSON (json: any): any
Creates a new instance of this class and initializes it with values from a JSON object
generated from an ArcGIS product. 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.
Parameters
| Parameter | Type | Description | Required |
|---|---|---|---|
| json | A 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
- any
Returns a new instance of this class.
clone
- Signature
-
clone (): OrderByInfo
Creates a deep clone of this object.
- Returns
- OrderByInfo
A deep clone of the OrderByInfo instance that invoked this method.
toJSON
- Signature
-
toJSON (): any
Converts an instance of this class to its ArcGIS portal JSON representation. See the Using fromJSON() guide topic for more information.
- Returns
- any
The ArcGIS portal JSON representation of an instance of this class.