addAll method

void addAll(
  1. Iterable<ILatLong> latLongs
)

Adds all points from the given iterable to the end of the path.

Implementation

void addAll(Iterable<ILatLong> latLongs) {
  _path.addAll(latLongs);
  _closed = null;
  _boundingBox = null;
}