Doctrine\MongoDB\Query\Builder::withinCenterSphere PHP Method

withinCenterSphere() public method

Add $within criteria with a $centerSphere shape to the query.
See also: Builder::geoWithinCenterSphere()
See also: Expr::withinCenterSphere()
See also: http://docs.mongodb.org/manual/reference/operator/centerSphere/
Deprecation: 1.1 MongoDB 2.4 deprecated $within in favor of $geoWithin
public withinCenterSphere ( float $x, float $y, float $radius )
$x float
$y float
$radius float
    public function withinCenterSphere($x, $y, $radius)
    {
        $this->expr->withinCenterSphere($x, $y, $radius);
        return $this;
    }