booleanContains
描述
🌐 Description
Boolean-contains 如果第二个几何体完全包含在第一个几何体中,则返回 True。两几何体的内部必须相交,并且第二几何体(几何 b)的内部和边界不得与第一个几何体(几何 a)的外部相交。Boolean-contains 返回与 @turf/boolean-within 完全相反的结果。
🌐 Boolean-contains returns True if the second geometry is completely contained by the first geometry.
The interiors of both geometries must intersect and, the interior and boundary of the secondary (geometry b)
must not intersect the exterior of the primary (geometry a).
Boolean-contains returns the exact opposite result of the @turf/boolean-within.
参数
🌐 Parameters
| 名称 | 类型 | 描述 |
|---|---|---|
| feature1 | Geometry | Feature<any> | GeoJSON 特性或几何 |
| feature2 | Geometry | Feature<any> | GeoJSON 特性或几何 |
返回
🌐 Returns
boolean true/false
示例
🌐 Examples
var line = turf.lineString([
[1, 1],
[1, 2],
[1, 3],
[1, 4],
]);
var point = turf.point([1, 2]);
turf.booleanContains(line, point);
//=true
安装
🌐 Installation
$ npm install @turf/boolean-contains
import { booleanContains } from "@turf/boolean-contains";
const result = booleanContains(...);
$ npm install @turf/turf
import * as turf from "@turf/turf";
const result = turf.booleanContains(...);