LMongo\Query\Builder::andWhereGeoWithin PHP Méthode

andWhereGeoWithin() public méthode

Add an "$geoWithin geospatial operation" clause to logical $and operation.
public andWhereGeoWithin ( string $column, string $shape, array $coords ) : LMongo\Query\Builder
$column string
$shape string
$coords array
Résultat LMongo\Query\Builder
    public function andWhereGeoWithin($column, $shape, array $coords)
    {
        return $this->whereGeoWithin($column, $shape, $coords, '$and');
    }
Builder