LMongo\Query\Builder::norWhereNear PHP Method

norWhereNear() public method

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