import { accelerateGeometry, execute, supportsCurves } from "@arcgis/core/geometry/operators/equalsOperator.js";const { accelerateGeometry, execute, supportsCurves } = await $arcgis.import("@arcgis/core/geometry/operators/equalsOperator.js");- Since
- ArcGIS Maps SDK for JavaScript 4.31
Performs a relational operation to determine if two 2D geometries are topologically equal.
Functions
| Name | Return Type | Object |
|---|---|---|
| | ||
| | ||
| |
accelerateGeometry
Accelerate a geometry. This method prepares the geometry for faster equals operations when the same geometry is tested multiple times (e.g. in a loop with hundreds of iterations). See the Acceleration guide topic for more information.
- Signature
-
accelerateGeometry (geometry: GeometryUnion): boolean
Parameters
| Parameter | Type | Description | Required |
|---|---|---|---|
| geometry | The geometry to accelerate. | |
- Returns
- boolean
Returns
trueif the geometry was successfully accelerated.
execute
Perform the equals operation on two geometries. The number of vertices and ordering of the vertices is not considered.
- Signature
-
execute (geometry1: GeometryUnion, geometry2: GeometryUnion): boolean
Parameters
| Parameter | Type | Description | Required |
|---|---|---|---|
| geometry1 | The first geometry. | | |
| geometry2 | The second geometry. | |
- Returns
- boolean
Returns
trueif the two geometries are topologically equal.
Example
// Returns true if two geometries are equalconst isEqual = equalOperator.execute(polyline1, polyline2);Variables
supportsCurves
Indicates if the operator supports input geometries that contain curves.
The value will always be true.
- Type
- boolean