import { accelerateGeometry, execute, supportsCurves } from "@arcgis/core/geometry/operators/disjointOperator.js";const { accelerateGeometry, execute, supportsCurves } = await $arcgis.import("@arcgis/core/geometry/operators/disjointOperator.js");- Since
- ArcGIS Maps SDK for JavaScript 4.31
Performs a relational operation to determine if one 2D geometry is disjoint (doesn't intersect in any way) with another 2D geometry. This operator can be used with non-simple geometries.

Functions
| Name | Return Type | Object |
|---|---|---|
| | ||
| | ||
| |
accelerateGeometry
Accelerate a geometry. This method prepares the geometry for faster disjoint 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 a disjoint operation on two geometries.
- Signature
-
execute (geometry1: GeometryUnion, geometry2: GeometryUnion): boolean
Parameters
| Parameter | Type | Description | Required |
|---|---|---|---|
| geometry1 | The base geometry that is tested for the "disjoint" relationship with | | |
| geometry2 | The comparison geometry that is tested for the "disjoint" relationship with | |
- Returns
- boolean
Returns
trueifgeometry1andgeometry2are disjoint (don't intersect in any way).
Example
// Returns true if a geometry is not contained in another.// Operates the opposite of contains.const isDisjointed = disjointOperator.execute(polygon1, polygon2);Variables
supportsCurves
Indicates if the operator supports input geometries that contain curves.
The value will always be true.
- Type
- boolean