当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JavaScript ArcGIS geometryEngine.disjoint用法及代码示例


基本信息

以下是所在类或对象的基本信息。

AMD: require(["esri/geometry/geometryEngine"], (geometryEngine) => { /* code goes here */ });

ESM: import * as geometryEngine from "@arcgis/core/geometry/geometryEngine";

对象: esri/geometry/geometryEngine

自从:用于 JavaScript 4.0 的 ArcGIS API

用法说明

geometryEngine.disjoint函数(或属性)的定义如下:

disjoint (geometry1, geometry2) {Boolean}


指示一个几何图形是否与另一个几何图形不相交(不以任何方式相交)。

参数:

类型说明
geometry1 Geometry

测试"disjoint" 与其他几何的关系的基础几何。

geometry2 Geometry

针对与其他几何的"disjoint" 关系测试的比较几何。

返回:

类型 说明
Boolean 如果 geometry1geometry2 不相交(不以任何方式相交),则返回 true

例子:

// returns true if a geometry is not contained in another.
// operates the opposite of contains
const isDisjointed = geometryEngine.disjoint(polygon, boundaryPolygon);

相关用法


注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 geometryEngine.disjoint。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。