add method

void add(
  1. ILatLong latLong
)

Adds a point to the end of the path.

Implementation

void add(ILatLong latLong) {
  _path.add(latLong);
  _closed = null;
  _boundingBox = null;
}