LMongo\Query\Builder::orWhereGeoWithin PHP Метод

orWhereGeoWithin() публичный Метод

Add an "$geoWithin geospatial operation" clause to logical $or operation.
public orWhereGeoWithin ( string $column, string $shape, array $coords ) : LMongo\Query\Builder
$column string
$shape string
$coords array
Результат LMongo\Query\Builder
    public function orWhereGeoWithin($column, $shape, array $coords)
    {
        return $this->whereGeoWithin($column, $shape, $coords, '$or');
    }
Builder