gpt4 book ai didi

javascript - 如何在 HERE Map API 上获取方向多段线而不是实线

转载 作者:行者123 更新时间:2023-11-30 12:54:20 25 4
gpt4 key购买 nike

使用 HERE Map Javascript API,我如何绘制方向折线,如路由结果示例中所示 here

enter image description here

如果我使用 nokia.maps.map.Polyline,如下所示:

map.objects.add(new nokia.maps.map.Polyline(routes[0].shape));

我得到以下信息:

enter image description here

我在 polyline 上找不到改变其样式的方法。

最佳答案

您需要创建 Polyline指定 arrows 属性,例如

polyline = new nokia.maps.map.Polyline(routes[0].shape,{
pen: {
strokeColor: "#22CA",
lineWidth: 5
},
arrows : true
});

您还可以在创建后使用set() 方法添加arrows:

polyline.set("arrows", true);

关于javascript - 如何在 HERE Map API 上获取方向多段线而不是实线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19780453/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com