DirectionPoint 将方向项目表示为具有各种显示信息的点。
- 另请参阅:
// Print driving directions.
const routeLayer = new RouteLayer({
portalItem: {
id: "69569b47b1e445b8a42ec12feab41ce9"
}
});
await routeLayer.load();
const locale = "en-US";
const formatDate = new Intl.DateTimeFormat(locale, {
year: 'numeric',
month: 'numeric',
day: 'numeric',
hour: 'numeric',
minute: 'numeric',
second: 'numeric',
timeZone: "America/Los_Angeles"
});
for (const directionPoint of routeLayer.directionPoints) {
const { arrivalTime, displayText } = directionPoint;
console.log(`${formatDate.format(arrivalTime)}: ${displayText}`);
}
// Output
// 12/7/2020, 3:58:50 PM: Start at Kenoak Pl, Pomona, California, 91768
// 12/7/2020, 3:58:50 PM: Go northeast on Kenoak Pl toward Preciado St
// 12/7/2020, 3:59:15 PM: Turn left on Preciado St
// 12/7/2020, 3:59:26 PM: Turn left on N White Ave
// 12/7/2020, 3:59:37 PM: Turn right onto the ramp and go on I-10 W
// 12/7/2020, 4:02:10 PM: Take the ramp on the right to CA-57 S / CA-57 N toward Santa Ana / I-210
// 12/7/2020, 4:02:24 PM: Keep right at the fork onto CA-57 N toward I-210
// 12/7/2020, 4:06:54 PM: Take the ramp on the right at exit 25B and go on CA-210 E toward San Bernardino
属性列表
名称 | 类型 | 摘要 | 类 | |
---|---|---|---|---|
Date | 更多详情 操作发生的时间。 | 更多信息 | DirectionPoint | |
String | 更多详情 类的名称。 | 更多信息 | Accessor | |
String | 更多详情 由点描述的方向事件或动作的类型。 | 更多信息 | DirectionPoint | |
String | 更多详情 要在屏幕上显示的方向项文本。 | 更多信息 | DirectionPoint | |
Number | 更多详情 到达时间的本地时间偏移量(以分钟为单位)。 | 更多信息 | DirectionPoint | |
Point | 更多详情 表示方向位置的点。 | 更多信息 | DirectionPoint | |
Number | 更多详情 方向项的顺序,从 1 开始。 | 更多信息 | DirectionPoint |
属性详细说明
-
arrivalTime Date
-
操作发生的时间。
-
类的名称。声明的类名的格式为
geoscene.folder.className
。
-
directionPointType String
-
由点描述的方向事件或动作的类型。
可能的值:"header"|"arrive"|"depart"|"straight"|"on-ferry"|"off-ferry"|"central-fork"|"roundabout"|"u-turn"|"door"|"stairs"|"elevator"|"escalator"|"pedestrian-ramp"|"left-fork"|"left-ramp"|"clockwise-roundabout"|"left-handed-u-turn"|"bear-left"|"left-turn"|"sharp-left"|"left-turn-and-immediate-left-turn"|"left-turn-and-immediate-right-turn"|"right-fork"|"right-ramp"|"counter-clockwise-roundabout"|"right-handed-u-turn"|"bear-right"|"right-turn"|"sharp-right"|"right-turn-and-immediate-left-turn"|"right-turn-and-immediate-right-turn"|"up-elevator"|"up-escalator"|"up-stairs"|"down-elevator"|"down-escalator"|"down-stairs"|"general-event"|"landmark"|"time-zone-change"|"traffic-event"|"scaled-cost-barrier-event"|"boundary-crossing"|"restriction-violation"
-
displayText String
-
要在屏幕上显示的方向项文本。
-
endTimeOffset Number
-
到达时间的本地时间偏移量(以分钟为单位)。
-
geometry Point
-
表示方向位置的点。
-
sequence Number
-
方向项的顺序,从 1 开始。
方法列表
名称 | 返回类型 | 摘要 | 类 | |
---|---|---|---|---|
* | 更多详情 创建此类的新实例,并使用从 GeoScene 产品生成的 JSON 对象中的值对其进行初始化。 | 更多信息 | DirectionPoint | |
Object | 更多详情 将此类的实例转换为其 GeoScene portal JSON 表示形式。 | 更多信息 | DirectionPoint |
方法详细说明
-
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 表示形式。