I\'m currently having a map, and each 10 meters I use LocationListener to refresh my location and get the new Latitude and Longitude. Now I wish that the route the user is takin
First translate Location into LatLng:
Location
LatLng
LatLng newPoint = new LatLng(location.getLatitude(), location.getLongitude());
Then add a point to existing list of points:
List<LatLng> points = lineRoute.getPoints(); points.add(newPoint); lineRoute.setPoints(points);