PolylineBarrier

AMD: require(["geoscene/rest/support/PolylineBarrier"], (PolylineBarrier) => { /* 代码 */ });
ESM: import PolylineBarrier from "@geoscene/core/rest/support/PolylineBarrier";
类: geoscene/rest/support/PolylineBarrier
继承: PolylineBarrier Accessor
起始版本: GeoScene API for JavaScript 4.23

使用 RouteLayer 时用于限制沿街道网络的行驶的折线障碍。

另请参阅:
示例:
// Print the number of polyline barriers.
const routeLayer = new RouteLayer({
  portalItem: {
    id: "69569b47b1e445b8a42ec12feab41ce9"
  }
});
await routeLayer.load();

const count = routeLayer.polylineBarriers.length;
console.log(`The route contains ${count} linear barriers`);
// output: "The route contains 2 linear barriers"

// Zoom to first barrier
view.goTo(routeLayer.polylineBarriers[0].geometry)

构造函数

new PolylineBarrier(properties)
参数:
properties Object
optional

有关可能传递到构造函数中的所有属性的列表,请参阅属性

属性列表

可以设置、检索或侦听任何属性。请参阅使用属性主题。
展示继承属性 隐藏继承的属性
名称 类型 摘要
String更多详情

指定点是障碍物是完全限制出行,或在跨越时添加时间或距离。

更多信息PolylineBarrier
String更多详情

类的名称。

更多信息Accessor
Point更多详情

障碍的点位置。

更多信息PolylineBarrier
String更多详情

障碍的名称。

更多信息PolylineBarrier

属性详细说明

barrierType String

指定点是障碍物是完全限制出行,或在跨越时添加时间或距离。

可选值:"restriction"|"added-cost"

declaredClass Stringreadonly inherited

类的名称。声明的类名的格式为 geoscene.folder.className

geometry Point

障碍的点位置。

name String

障碍的名称。

方法列表

名称 返回类型 摘要
*更多详情

创建此类的新实例,并使用从 GeoScene 产品生成的 JSON 对象中的值对其进行初始化。

更多信息PolylineBarrier
Object更多详情

将此类的实例转换为其 GeoScene portal JSON 表示形式。

更多信息PolylineBarrier

方法详细说明

fromJSON(json){*}static

创建此类的新实例,并使用从 GeoScene 产品生成的 JSON 对象中的值对其进行初始化。传递到输入 json 参数中的对象通常来自对 REST API 中查询操作的响应或来自其他 GeoScene 产品的 toJSON() 方法。请参阅指南中的使用 fromJSON() 主题,了解有关何时以及如何使用此函数的详细信息和示例。

参数:

json Object

GeoScene 格式的实例的 JSON 表示形式。有关各种输入 JSON 对象的结构示例,请参阅 GeoScene REST API 文档

返回:
类型 说明
* 返回此类的新实例。
toJSON(){Object}

将此类的实例转换为其 GeoScene portal JSON 表示形式。有关详细信息,请参阅使用 fromJSON() 指南主题。

返回:
类型 说明
Object 此实例的 GeoScene portal JSON 表示形式。

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.