LMongo\Query\Builder::norWhereGeoIntersects PHP 메소드

norWhereGeoIntersects() 공개 메소드

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