gpt4 book ai didi

android - 如何使用 PolylineOptions 从 google map android v2 中清除路线并再次绘制新路线?

转载 作者:行者123 更新时间:2023-11-29 15:13:46 26 4
gpt4 key购买 nike

我在每个 onLocationChange 上获取纬度和经度,并制定如下路线:

public void onLocationChanged(Location location) {


PolylineOptions rectLine2;
rectLine2.add(new LatLng(lat, lon));
mGoogleMap.addPolyline(rectLine2);
}

现在我想一键清除这条路线,然后再移动时,应该绘制一条新路线,但就我而言,旧路线并不清楚。

我做了以下但没有工作:

mGoogleMap.clear();// It clear's the map, but when I again draw the old route again comes.

还有

Polyline polyline;
polyline = mGoogleMap.addPolyline(rectLine2);
polyline.reomve()// This also didn't work.

有没有其他解决方案可以清除 map ?

提前致谢!

最佳答案

mGoogleMap.clear()

用于清除整个 map ,以便您可以重新绘制折线...

否则您需要为折线分配一个变量,然后您可以将其删除...

PolylineOptions rectLine2;
rectLine2.add(new LatLng(lat, lon));
Polyline polyline = mGoogleMap.addPolyline(rectLine2);
polyline.remove();

这些是方法......为什么你需要任何其他解决方案来清除......?

如果你有很多折线,那么只需创建一个数组,并在需要清除时删除所有折线

关于android - 如何使用 PolylineOptions 从 google map android v2 中清除路线并再次绘制新路线?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26858877/

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