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


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