intersectsOperator

AMD: require(["esri/geometry/operators/intersectsOperator"], (intersectsOperator) => { /* code goes here */ });
ESM: import * as intersectsOperator from "@arcgis/core/geometry/operators/intersectsOperator.js";
Object: esri/geometry/operators/intersectsOperator
Since: ArcGIS Maps SDK for JavaScript 4.31
beta

Performs a relational operation to determine if one 2D geometry intersects another 2D geometry. Intersect is same as not disjoint. This operator can be used with non-simple geometries.

Method Overview

Name Return Type Summary Object

Accelerate a geometry.

intersectsOperator

Perform a intersects operation on two geometries.

intersectsOperator

Method Details

accelerateGeometry

Method
accelerateGeometry(geometry){Boolean}

Accelerate a geometry. This method prepares the geometry for faster intersects operations when the same geometry is tested multiple times (e.g. in a loop with hundreds of iterations).

Parameter
geometry Geometry

The geometry to accelerate.

Returns
Type Description
Boolean Returns true if the geometry was successfully accelerated.

execute

Method
execute(geometry1, geometry2){Boolean}

Perform a intersects operation on two geometries.

Parameters
geometry1 Geometry

The geometry that is tested for the intersects relationship to geometry2.

geometry2 Geometry

The geometry being intersected.

Returns
Type Description
Boolean Returns true if geometry1 intersects with geometry2.
Example
// Returns true if two geometries intersect
const isIntersecting = intersectsOperator.execute(polyline1, polyline2);

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.