AMD:
require(["esri/geometry/operators/touchesOperator"], (touchesOperator) => { /* code goes here */ });
ESM:
import * as touchesOperator from "@arcgis/core/geometry/operators/touchesOperator.js";
Object:
esri/geometry/operators/touchesOperator
Since: ArcGIS Maps SDK for JavaScript 4.31
beta
Perform a relational operation to determine if one 2D geometry touches another 2D geometry.
Method Overview
Name | Return Type | Summary | Object |
---|---|---|---|
Accelerate a geometry. | touchesOperator | ||
Perform a touches operation on two geometries. | touchesOperator |
Method Details
-
accelerateGeometry
accelerateGeometry(geometry){Boolean}
-
Accelerate a geometry. This method prepares the geometry for faster touches operations when the same geometry is tested multiple times (e.g. in a loop with hundreds of iterations).
Parametergeometry GeometryThe geometry to accelerate.
ReturnsType Description Boolean Returns true
if the geometry was successfully accelerated.
-
execute
execute(geometry1, geometry2){Boolean}
-
Perform a touches operation on two geometries.
ParametersReturnsType Description Boolean Returns true
if the two geometries touch.Example// Returns true if the line vertex touches the edge of the polygon const isTouching = touchOperator.execute(polygon, line);