Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

update polyline according to the user moving android googleMaps v2

I have googleMap (v2) with polyline that presents a route between the user current location and the destination point.
Now, I want to update the polyline according to the user moving.

I tried to redrawing the whole polyline when location is changed but the polyline is flickering.

I didn't find any appropriate function in the PolylineOptions class
(the function add() is only to add a vertex but not to update or remove)

do you have any idea how to update the polyline ???
thank you for giving your time.

like image 684
dvrm Avatar asked Jun 11 '13 07:06

dvrm


People also ask

What happens when a polyline is removed from a Google map?

After a polyline has been removed, the behavior of all its methods is undefined. Sets the clickability of the polyline. If the polyline is clickable, your app will receive notifications to the GoogleMap.OnPolylineClickListener when the user clicks the polyline.

How do I add a polyline to a Google map?

Call GoogleMap.addPolyline () to add the polyline to the map. Set the polyline's clickable option to true if you want to handle click events on the polyline. There's more about event handling later in this tutorial.

What do polygons and polylines represent on a Google map?

You've built an Android app containing a Google map, with polygons to represent areas on the map and polylines to represent routes or other connections between locations. You've also learned how to use the Maps SDK for Android . Learn about the Circle object.

Can I associate a string ID to a Polyline in a map?

For example, the Object can contain data about what the polyline represents. This is easier than storing a separate Map<Polyline, Object>. As another example, you can associate a String ID corresponding to the ID from a data set. Google Maps SDK for Android neither reads nor writes this property.


2 Answers

The only way as of version 3.1.36:

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

Hopefully the API will be enhanced in later versions.

like image 131
MaciejGórski Avatar answered Sep 28 '22 10:09

MaciejGórski


*I have already done working on updating polyline path without removing the polyline. We can do this by changing the points of that polyline. Check below code.

This is the logic of setting new points to polyline.

/*Here the routes contain the points(latitude and longitude)*/
for (int i = 0; i < routes.size(); i++) {
            Route route = routes.get(i);
            if(polyline_path != null){
                polyline_path.setPoints(route.points);
            }
        }

Detail Explanation:

private GoogleMap map_object;
private Marker marker_driver;
private Marker marker_drop_off;
private Polyline polyline_path;
private PolylineOptions polylineOptions_path;

...
...
...

/*HelperDirectionFinder is a class that I create to call google API and I used this 
  class to get directions routes*/

/*I have created Service, and I'm calling this lines below after 5 sec. to get the 
  updated routes from google API.*/

HelperDirectionFinder directionFinder = new HelperDirectionFinder(
            JobEndScreen.this, source, destinations);
    try {
        directionFinder.showDirection();
    } catch (UnsupportedEncodingException e) {
        HelperProgressDialog.closeDialog();
    }

...
...
...

@Override
public void onDirectionFinderStart() {
    if(polylineOptions_path == null){
        HelperProgressDialog.showDialog(getActivity(), "", getString(R.string.text_loading));
    }
}


/*This interface method is called after getting routes from google API.*/
/*Here the routes contains the list of path or routes returned by Google Api*/
@Override
public void onDirectionFinderSuccess(List<Route> routes) {
    HelperProgressDialog.closeDialog();


    /*When polylineOptions_path is null it means the polyline is not drawn.*/
    /*If the polylineOptions_path is not null it means the polyline is drawn on map*/
    if(polylineOptions_path == null){
        for (Route route : routes) {
            polylineOptions_path = new PolylineOptions().
                    geodesic(true).
                    color(ContextCompat.getColor(getActivity(), R.color.color_bg_gray_dark)).
                    width(10);

            for (int i = 0; i < route.points.size(); i++)
                polylineOptions_path.add(route.points.get(i));

            polyline_path = map_object.addPolyline(polylineOptions_path);
        }
    }
    else {
        for (int i = 0; i < routes.size(); i++) {
            Route route = routes.get(i);
            if(polyline_path != null){
                polyline_path.setPoints(route.points);
            }
        }
    }
}
like image 21
Hantash Nadeem Avatar answered Sep 28 '22 10:09

Hantash Nadeem