LMongo\Query\Builder::andWhereGeoIntersects PHP Method

andWhereGeoIntersects() public method

Add an "$geoIntersects geospatial operation" clause to logical $and operation.
public andWhereGeoIntersects ( string $column, string $geometry, array $coords ) : LMongo\Query\Builder
$column string
$geometry string
$coords array
return LMongo\Query\Builder
    public function andWhereGeoIntersects($column, $geometry, array $coords)
    {
        return $this->whereGeoIntersects($column, $geometry, $coords, '$and');
    }
Builder