LMongo\Query\Builder::orWhereNear PHP 메소드

orWhereNear() 공개 메소드

Add an "$near geospatial operation" clause to logical $or operation.
public orWhereNear ( string $column, array $coords, mixed $geometry = null, mixed $maxDistance = null ) : LMongo\Query\Builder
$column string
$coords array
$geometry mixed
$maxDistance mixed
리턴 LMongo\Query\Builder
    public function orWhereNear($column, array $coords, $geometry = null, $maxDistance = null)
    {
        return $this->whereNear($column, $coords, $geometry, $maxDistance, '$or');
    }
Builder