LMongo\Query\Builder::orWhereGeoIntersects PHP Method

orWhereGeoIntersects() public method

Add an "$geoIntersects geospatial operation" clause to logical $or operation.
public orWhereGeoIntersects ( string $column, string $geometry, array $coords ) : LMongo\Query\Builder
$column string
$geometry string
$coords array
return LMongo\Query\Builder
    public function orWhereGeoIntersects($column, $geometry, array $coords)
    {
        return $this->whereGeoIntersects($column, $geometry, $coords, '$or');
    }
Builder