GeoPolygon

data class GeoPolygon(val exterior: List<GeoPoint>, val interiors: List<List<GeoPoint>> = emptyList()) : FieldMatcher

Geographic polygon (geo_polygon) with an exterior ring and optional interior holes. Each ring's first and last point must coincide (enforced by Qdrant, not here).

Constructors

Link copied to clipboard
constructor(exterior: List<GeoPoint>, interiors: List<List<GeoPoint>> = emptyList())

Properties

Link copied to clipboard
Link copied to clipboard