crossesOperator

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

Performs a relational operation to determine if one 2D geometry crosses another 2D geometry.

Method Overview

Name Return Type Summary Object

Accelerate a geometry.

crossesOperator

Perform the crosses operation on two geometries.

crossesOperator

Method Details

accelerateGeometry

Method
accelerateGeometry(geometry){Boolean}

Accelerate a geometry. This method prepares the geometry for faster crosses 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 the crosses operation on two geometries.

Parameters
geometry1 Geometry

The geometry to cross.

geometry2 Geometry

The geometry being crossed.

Returns
Type Description
Boolean Returns true if geometry1 crosses geometry2.
Example
// Returns true if a geometry cross another geometry
const isCrossed = crossesOperator.execute(polygon, polyline);

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

The developer dashboard has moved

You can no longer sign into this site. Go to your ArcGIS portal or the ArcGIS Location Platform dashboard to perform management tasks.

Your ArcGIS portal

Create, manage, and access API keys and OAuth 2.0 developer credentials, hosted layers, and data services.

Your ArcGIS Location Platform dashboard

Manage billing, monitor service usage, and access additional resources.

Learn more about these changes in the What's new in Esri Developers June 2024 blog post.

Close