當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。