containsLatLong method
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);
}