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


JavaScript ArcGIS geodesicUtils.geodesicDensify用法及代碼示例


基本信息

以下是所在類或對象的基本信息。

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

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

對象: esri/geometry/support/geodesicUtils

自從:用於 JavaScript 4.12 的 ArcGIS API

用法說明

geodesicUtils.geodesicDensify函數(或屬性)的定義如下:

geodesicDensify (geometry, maxSegmentLength) {Polyline|Polygon} static


計算並返回一個致密的折線或多邊形。

參數:

類型說明
geometry Polyline|Polygon

輸入折線或多邊形。

maxSegmentLength Number

頂點之間的最大長度(以米為單位)。

返回:

類型 說明
Polyline | Polygon 致密的折線或多邊形。

例子:

// Densify the polygon representing Bermuda Triangle with maximum segment size of 100km.
const MIAMI    = { lat: 25.775278, lon: -80.208889 };  // Florida
const HAMILTON = { lat: 32.293, lon: -64.782 };        // Bermuda
const SANJUAN  = { lat: 18.406389, lon:  -66.063889 }; // Puerto Rico
const polygon = new Polygon({
  rings: [[
    [MIAMI.lon, MIAMI.lat],
    [HAMILTON.lon, HAMILTON.lat],
    [SANJUAN.lon, SANJUAN.lat],
    [MIAMI.lon, MIAMI.lat]
  ]]
});
const densifiedPolygon = geodesicUtils.geodesicDensify(polygon, 100000);
const vertexCountBefore = polygon.rings[0].length;
const vertexCountAfter = densifiedPolygon.rings[0].length;
console.log("Before: ", vertexCountBefore, ", After: ", vertexCountAfter); // Before: 4, After: 51

相關用法


注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 geodesicUtils.geodesicDensify。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。