LMongo\Query\Builder::norWhereNearSphere PHP Method

norWhereNearSphere() public method

Add an "$nearSphere geospatial operation" clause to logical $nor operation.
public norWhereNearSphere ( 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 norWhereNearSphere($column, array $coords, $geometry = null, $maxDistance = null)
    {
        return $this->whereNearSphere($column, $coords, $geometry, $maxDistance, '$nor');
    }
Builder