Location\Distance\DistanceInterface::getDistance PHP Method

getDistance() public method

public getDistance ( Coordinate $point1, Coordinate $point2 ) : float
$point1 Location\Coordinate
$point2 Location\Coordinate
return float distance between the two coordinates in meters
    public function getDistance(Coordinate $point1, Coordinate $point2);

Usage Example

Exemplo n.º 1
0
 /**
  * Calculates the length of the line (distance between the two
  * coordinates).
  *
  * @param DistanceInterface $calculator instance of distance calculation class
  *
  * @return float
  */
 public function getLength(DistanceInterface $calculator)
 {
     return $calculator->getDistance($this->point1, $this->point2);
 }
All Usage Examples Of Location\Distance\DistanceInterface::getDistance
DistanceInterface