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


JavaScript ArcGIS geometryEngineAsync.nearestVertices用法及代码示例


基本信息

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

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

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

对象: esri/geometry/geometryEngineAsync

自从:用于 JavaScript 4.0 的 ArcGIS API

用法说明

geometryEngineAsync.nearestVertices函数(或属性)的定义如下:

nearestVertices (geometry, inputPoint, searchRadius, maxVertexCountToReturn) {Promise<NearestPointResult>}


查找距指定点给定距离内的所有顶点,从最近到最远排序,并将它们作为对象数组返回。

参数:

类型说明
geometry Geometry

要考虑的几何形状。

inputPoint Point

测量的起点。

searchRadius Number

以视图的空间参考为单位从 inputPoint 搜索的距离。

maxVertexCountToReturn Number

返回的最大顶点数。

返回:

类型 说明
Promise<NearestPointResult> 解析为 NearestPointResult 的数组,其中包含距离 inputPoint 最近的顶点。

例子:

// Returns an array of the nearest vertices
const nearest = await geometryEngineAsync.nearestVertices(boundaryPolygon, point, 500, 2);

相关用法


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