add method
Adds a point to the end of the path.
Implementation
void add(ILatLong latLong) {
_path.add(latLong);
_closed = null;
_boundingBox = null;
}
Adds a point to the end of the path.
void add(ILatLong latLong) {
_path.add(latLong);
_closed = null;
_boundingBox = null;
}