GeometryCollection

data class GeometryCollection(val geometries: List<Geometry>, val boundingBox: GeoBoundingBox? = null) : Geometry, GeoJsonObject

A collection of Geometry objects.

Parameters

geometries

List of geometries.

boundingBox

Bounding box of the GeometryCollection (optional).

Important: This is a Public Preview API. It may be changed or removed at any time.

Constructors

Link copied to clipboard
fun GeometryCollection(geometries: List<Geometry>, boundingBox: GeoBoundingBox? = null)

Properties

Link copied to clipboard
open override val boundingBox: GeoBoundingBox? = null
Link copied to clipboard
val geometries: List<Geometry>