DirectionLine 表示与各个方向项目相关联的折线。
- 另请参阅:
// Print the distance and time between each direction.
const routeLayer = new RouteLayer({
portalItem: {
id: "69569b47b1e445b8a42ec12feab41ce9"
}
});
await routeLayer.load();
const locale = "en-US";
const formatMinutes = new Intl.NumberFormat(locale, {
minimumFractionDigits: 1,
maximumFractionDigits: 1
});
const formatDistance = new Intl.NumberFormat(locale, {
minimumFractionDigits: 0,
maximumFractionDigits: 0
});
for (const directionLine of routeLayer.directionLines) {
const { distance, duration } = directionLine;
console.log(`Drive ${formatDistance.format(distance)} meters for ${formatMinutes.format(duration)} minutes.`);
}
// Drive 76 meters for 0.4 minutes.
// Drive 77 meters for 0.2 minutes.
// Drive 150 meters for 0.2 minutes.
// Drive 3,670 meters for 2.6 minutes.
// Drive 307 meters for 0.2 minutes.
// Drive 6,293 meters for 4.5 minutes.
// Drive 42,276 meters for 29.2 minutes.
// etc.
属性列表
名称 | 类型 | 摘要 | 类 | |
---|---|---|---|---|
String | 更多详情 类的名称。 | 更多信息 | Accessor | |
String | 更多详情 由 esriDirectionLineType 定义的线的类型。 | 更多信息 | DirectionLine | |
Number | 更多详情 以米为单位测量的线的长度。 | 更多信息 | DirectionLine | |
Number | 更多详情 以分钟为单位测量的线的时间。 | 更多信息 | DirectionLine | |
Polyline | 更多详情 表示方向位置的折线。 | 更多信息 | DirectionLine |
属性详细说明
-
类的名称。声明的类名的格式为
geoscene.folder.className
。
-
directionLineType String
-
由 esriDirectionLineType 定义的线的类型。
可能的值:"unknown"|"segment"|"maneuver-segment"|"restriction-violation"|"scaled-cost-barrier"|"heavy-traffic"|"slow-traffic"|"moderate-traffic"
-
distance Number
-
以米为单位测量的线的长度。
-
duration Number
-
以分钟为单位测量的线的时间。表示沿线需要多少时间。
-
geometry Polyline
-
表示方向位置的折线。
方法列表
名称 | 返回类型 | 摘要 | 类 | |
---|---|---|---|---|
* | 更多详情 创建此类的新实例,并使用从 GeoScene 产品生成的 JSON 对象中的值对其进行初始化。 | 更多信息 | DirectionLine | |
Object | 更多详情 将此类的实例转换为其 GeoScene portal JSON 表示形式。 | 更多信息 | DirectionLine |
方法详细说明
-
fromJSON(json){*}static
-
创建此类的新实例,并使用从 GeoScene 产品生成的 JSON 对象中的值对其进行初始化。传递到输入
json
参数中的对象通常来自对 REST API 中查询操作的响应或来自其他 GeoScene 产品的 toJSON() 方法。请参阅指南中的使用 fromJSON() 主题,了解有关何时以及如何使用此函数的详细信息和示例。参数:json ObjectGeoScene 格式的实例的 JSON 表示形式。有关各种输入 JSON 对象的结构示例,请参阅 GeoScene REST API 文档。
返回:类型 说明 * 返回此类的新实例。
-
toJSON(){Object}
-
将此类的实例转换为其 GeoScene portal JSON 表示形式。有关详细信息,请参阅使用 fromJSON() 指南主题。
返回:类型 说明 Object 此实例的 GeoScene portal JSON 表示形式。