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


JavaScript ArcGIS TraceLocation.percentAlong用法及代码示例


基本信息

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

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

ESM: import TraceLocation from "@arcgis/core/rest/networks/support/TraceLocation";

类: esri/rest/networks/support/TraceLocation

继承: TraceLocation > Accessor

自从:用于 JavaScript 4.20 的 ArcGIS API

用法说明

TraceLocation.percentAlong函数(或属性)的定义如下:

percentAlong Number


这个值为 0-1 的双参数表示沿着放置跟踪位置的线的百分比。仅适用于线要素。

例子:

Line feature with objectId 100 with 2 midspan junctions (j1,j2). The line feature has 3 edge network elements
F-j1, j1-j2 and j2-T.

                                       OID=100
                               F------j1------j2------T

F-j1  (objectId=100, positionFrom=0, positionTo=0.33)
j1-j2 (objectId=100, positionFrom=0.33, positionTo=0.66)
j2-T  (objectId=100, positionFrom=0.66, positionTo=1)

When percentAlong is 0.5 (50%) the starting location will be placed on the middle edge (j1-j2)

                                       OID=100
                               F------j1---x--j2------T

When percentAlong is 0.1 (10%) the starting location will be placed on the first edge (F-j1)

                                       OID=100
                               F-x----j1------j2------T

相关用法


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