gpt4 book ai didi

android - 根据用户移动 android googleMaps v2 更新折线

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:56:19 25 4
gpt4 key购买 nike

我有带有折线的 googleMap (v2),显示用户当前位置和目的地点之间的路线。
现在,我想根据用户的移动更新折线。

我试图在位置更改时重新绘制整条多段线,但多段线在闪烁。

我在PolylineOptions类中没有找到合适的函数
(函数add()只是添加一个顶点,而不是更新或删除)

你知道如何更新折线吗???
感谢您抽出时间。

最佳答案

从版本 3.1.36 开始的唯一方法:

List<LatLng> points = polyline.getPoints();
points.add(newPoint);
polyline.setPoints(points);

希望API在以后的版本中得到加强。

关于android - 根据用户移动 android googleMaps v2 更新折线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17038258/

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