如果使用JavaScript,是否可以避免在HERE地图中由某些坐标预设的特定道路?
答案 0 :(得分:1)
目前尚不清楚您是否要避免某些道路类型或某些道路链接。使用JavaScript API都可以。请查看下面的示例,了解如何构造可避开一般收费公路和两条特定道路链接的路由参数。
您可以在文档中的avoiding links and areas和avoiding road types上找到详细信息。
var routingParameters = {
// The routing mode, strict exclusion of tollroads
'mode': 'fastest;car;tollroad:-3',
// The start point of the route:
'waypoint0': 'geo!52.5160,13.3779',
// The end point of the route:
'waypoint1': 'geo!52.5206,13.3862',
// avoid two specific road links
'avoidlinks': '+799574071,+781539155'
};