containsLatLong method

bool containsLatLong(
  1. ILatLong latLong
)

Tests if the given LatLong point is within this bounding box.

latLong The coordinate point to test Returns true if the point is within the boundary (inclusive)

Implementation

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