insertAll method

void insertAll(
  1. int index,
  2. Iterable<ILatLong> latLongs
)

Inserts all points from the given iterable at the given index.

Implementation

void insertAll(int index, Iterable<ILatLong> latLongs) {
  _path.insertAll(index, latLongs);
  _closed = null;
  _boundingBox = null;
}