MPPoint.copy constructor

MPPoint.copy(
  1. MPPoint other
)

Copy another MPPoint's coordinates

Implementation

MPPoint.copy(MPPoint other) {
  _lat = other.latitude;
  _lng = other.longitude;
  _floorIndex = other.floorIndex;
}