HERE Maps JS API 具有 ABR 和高度限制的路由

HERE Maps JS API Routing with ABR and Height limitations

我最近遇到了一个问题,我在这里专门使用 maps JS api 路由,我正在尝试添加限制,例如使用身高或体重。出于某种原因,它忽略了它,我也在使用 HERE 中的车队远程信息处理磁贴,因此它向我显示了有关此处的相关信息。

我的选择是:

        let routingParameters = {
            'routingMode': 'short',
            'transportMode': 'truck',
            'origin': locationPoints.A.lat+','+locationPoints.A.lon,
            'destination': locationPoints.B.lat+','+locationPoints.B.lon,
            'truck': {
                'height': 600,
                'grossWeight': 22000
            },
            'return': 'polyline,summary'
        };

路由本身一切正常,也许我遗漏了什么?有没有办法避免这些事情?

从逻辑上讲,不可能通过 6 米高的 4.5 地下隧道,因此即使没有适合它的明智路线,也不应该是一个选择。

我设法弄明白了,例如,他们的密钥似乎必须在密钥本身中。

    let routingParameters = {
        'routingMode': 'short',
        'transportMode': 'truck',
        'origin': locationPoints.A.lat+','+locationPoints.A.lon,
        'destination': locationPoints.B.lat+','+locationPoints.B.lon,
        'truck[height]': 600,
        'return': 'polyline,summary'
    };

绝对有效。谁会 运行 遇到同样的问题。