containsLatLong method

bool containsLatLong(
  1. ILatLong latLong
)

@param latLong the LatLong whose coordinates should be checked. @return true if this BoundingBox contains the given LatLong, false otherwise.

Implementation

bool containsLatLong(ILatLong latLong) {
  return contains(latLong.latitude, latLong.longitude);
}