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


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


基本信息

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

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.nearestVertex函数(或属性)的定义如下:

nearestVertex (geometry, inputPoint) {NearestPointResult}


在几何图形上找到最接近指定点的顶点。

参数:

类型说明
geometry Geometry

要考虑的几何形状。

inputPoint Point

用于搜索几何中最近顶点的点。

返回:

类型 说明
NearestPointResult 返回包含最近顶点的对象。

例子:

// Finds the nearest vertex of the polygon to the input point
const {
 coordinate,
 distance
} = geometryEngine.nearestVertex(boundaryPolygon, point);

相关用法


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