contains method
- RaliPosition position
Checks if a position is contained within this bounding box
Implementation
bool contains(RaliPosition position) {
return position.lng >= southwest.lng &&
position.lng <= northeast.lng &&
position.lat >= southwest.lat &&
position.lat <= northeast.lat;
}