I am adding a polyline option simply as in google developer's website.
PolylineOptions rectOptions = new PolylineOptions()
.add(new LatLng(37.35, -122.0))
.add(new LatLng(37.45, -122.0)) // North of the previous point, but at the same longitude
.add(new LatLng(37.45, -122.2)) // Same latitude, and 30km to the west
.add(new LatLng(37.35, -122.2)) // Same longitude, and 16km to the south
.add(new LatLng(37.35, -122.0)); // Closes the polyline.
// Get back the mutable Polyline
Polyline polyline = myMap.addPolyline(rectOptions);
I want to remove it. but there is no rectOptions.remove()
I did update google play services from my sdk as mentioned in Google Maps Android API v2, how to remove Polylines from the map?
But still I dont have it. Should I do something more after just updating it from SDK manager? I really need to remove it and not make it invisible to save memory cause I will show a path of lots of points and for many times.
To remove the Polyline
, use polyline.remove();
You shouldn't use PolylineOptions
to remove it.
Use PolyLine
like this
polyline.remove();
Documentation
public void remove ()
Removes this polyline from the map. After a polyline has been removed, the behavior of all its methods is undefined.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With