Search code examples
androidgoogle-mapspolyline

Android Remove Polyline or replace


on my app i add 2 marker on map. When i add a second marker with click i call a function to calculate route and add polyline on map. This is the code for polyline

protected void onPostExecute(List<List<HashMap<String, String>>> result) {
        ArrayList<LatLng> points = null;
        PolylineOptions lineOptions = null;
        MarkerOptions markerOptions = new MarkerOptions();
        String distance = "";
        String duration = "";
        String value_duration = "";


        // Traversing through all the routes
        for (int i = 0; i < result.size(); i++) {
            points = new ArrayList<LatLng>();
            lineOptions = new PolylineOptions();

            // Fetching i-th route
            List<HashMap<String, String>> path = result.get(i);

            // Fetching all the points in i-th route
            for (int j = 0; j < path.size(); j++) {
                HashMap<String, String> point = path.get(j);


                if (j == 0) {    // Get distance from the list
                    distance = (String) point.get("distance");
                    continue;
                } else if (j == 1) { // Get duration from the list
                    duration = (String) point.get("duration");
                    value_duration = (String) point.get("duration_");
                    continue;
                }

                double lat = Double.parseDouble(point.get("lat"));
                double lng = Double.parseDouble(point.get("lng"));
                LatLng position = new LatLng(lat, lng);

                points.add(position);
            }

            // Adding all the points in the route to LineOptions
            lineOptions.addAll(points);
            lineOptions.width(10);
            lineOptions.color(Color.parseColor("#F7B907"));

        }

        // Drawing polyline in the Google Map for the i-th route
        distanza_percorso = distance;
        durata_percorso = duration;

        testo_car.setText(durata_percorso);

        durata_tragitto = Float.parseFloat(value_duration);
        Log.d("durata_tragitto", "durata: " + value_duration);

        polylineFinal = map.addPolyline(lineOptions);


        moveToBounds(map.addPolyline(lineOptions));


    }

Now i would like to remove polyline by map if i replace second marker and call a new calculate route. I have write this codde:

if (polylineFinal != null){
            polylineFinal.remove();
        }

but the polyline on map are not remove. Can you help me please? Any idea why?

Thanks


Solution

  • Not sure but try updating your adding polyline code with this,

    polylineFinal = map.addPolyline(lineOptions);
    moveToBounds(polylineFinal);