Checks whether point is inside bounds
point
bool contains(LatLng point) => point.longitude >= west && point.longitude <= east && point.latitude >= south && point.latitude <= north;