摘要
表示与交汇点相邻的边。
说明
可以使用 directions_query.adjacentEdges(junction) 以获取相邻边。
属性
属性 | 说明 | 数据类型 |
element (只读) | 相邻边的网络边元素。 | Edge |
fromPosition (只读) | 网络元素上相邻边开始的位置。 值的范围为 0.0 到 1.0。 | Float |
immediateAzimuths (只读) | 在邻近边的起点和终点处计算的方位角。 该元组包含以逗号分隔的浮点值。 | tuple |
names (只读) | 引用相邻边的元素名称的迭代。 | DirectionsName |
sourceID (只读) | 相邻边的网络元素的源 ID。 | Integer |
sourceObjectID (只读) | 相邻边的网络元素的源对象 ID。 | Integer |
toPosition (只读) | 网络元素上相邻边结束的位置。 值的范围为 0.0 到 1.0。 | Float |
type (只读) | 相邻边的类型。 | TraversedElementType |
方法概述
方法 | 说明 |
getName (index, mapping, fallback) | 获取相邻边的名称。 可以返回全名或名称的一部分,具体取决于 mapping 参数值。 |
getNames (mapping, fallback) | 获取相邻边的名称。 |
方法
getName (index, mapping, fallback)
参数 | 说明 | 数据类型 |
index | The type of name that will be retrieved (for example, PrimaryName = 0, AlternateName1 = 1, AlternateName2 = 2, and so on depending on the network dataset's direction configuration). (默认值为 0) | Integer |
mapping | The portion of the name that will be returned. (默认值为 DirectionsFieldMapping.FullName) | DirectionsFieldMapping |
fallback | The value if the edge does not contain the requested mapped property. (默认值为 "") | String |
数据类型 | 说明 |
String | 来自边的名称。None 也是有效的返回值。 |
getNames (mapping, fallback)
参数 | 说明 | 数据类型 |
mapping | The portion of the name that will be returned. (默认值为 DirectionsFieldMapping.FullName) | DirectionsFieldMapping |
fallback | The value if the edge does not contain the requested mapped property. (默认值为 "") | String |
数据类型 | 说明 |
Iterable | 字符串的迭代,由边的名称(主要名称和备选名称)组成。 |