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;
    }