new TransferPathParameters(options)
Usage
// 浏览器
<script type="text/javascript" src="https://iclient.supermap.io/dist/leaflet/iclient-leaflet.js"></script>
<script>
new L.supermap.TransferPathParameters(options);
// 弃用的写法
new SuperMap.TransferPathParameters(options);
</script>
// ES6 Import
import { TransferPathParameters } from '@supermapgis/iclient-leaflet';
new TransferPathParameters(options);
common/iServer/TransferPathParameters.js, line 6
Name | Type | Description | |||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
options |
Object |
参数。
|
Members
-
pointsArray.<(GeometryPoint|L.Point|L.LatLng|ol.geom.Point|mapboxgl.LngLat|Array.<number>|number)>
-
两种查询方式:
1. 按照公交站点的起止 ID 进行查询,则 points 参数的类型为 int[],形如:[起点 ID、终点 ID],公交站点的 ID 对应服务提供者配置中的站点 ID 字段;
2. 按照起止点的坐标进行查询,则 points 参数的类型为 Point2D[],形如:[{"x":44,"y":39},{"x":45,"y":40}]。 -
transferLinesArray.<TransferLine>
-
本换乘分段内可乘车的路线集合,通过交通换乘方案查询得到。
Methods
-
static toJson(params){string}
common/iServer/TransferPathParameters.js, line 48 -
将
TransferPathParameters
对象参数转换为 JSON 字符串。Name Type Description params
TransferPathParameters 交通换乘参数。
Returns:
Type Description string 转化后的 JSON 字符串。 -
destroy()
common/iServer/TransferPathParameters.js, line 40 -
释放资源,将引用资源的属性置空。