Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

issue with removing polyline google map v2 android

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.

like image 760
Vivere_FlowCoder Avatar asked Mar 01 '13 10:03

Vivere_FlowCoder


2 Answers

To remove the Polyline, use polyline.remove();

like image 93
Mokus Avatar answered Oct 08 '22 14:10

Mokus


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.

like image 42
moDev Avatar answered Oct 08 '22 13:10

moDev