Doctrine\MongoDB\Query\Builder::withinCenter PHP Метод

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

Add $within criteria with a $center shape to the query.
См. также: Builder::geoWithinCenter()
См. также: Expr::withinCenter()
См. также: http://docs.mongodb.org/manual/reference/operator/center/
Устаревший: 1.1 MongoDB 2.4 deprecated $within in favor of $geoWithin
public withinCenter ( float $x, float $y, float $radius )
$x float
$y float
$radius float
    public function withinCenter($x, $y, $radius)
    {
        $this->expr->withinCenter($x, $y, $radius);
        return $this;
    }