GeometryCollection
data class GeometryCollection<out G : Geometry> @JvmOverloads constructor(val geometries: List<G>, val bbox: BoundingBox? = null) : Geometry, Collection<G> (source)
A GeometryCollection contains multiple, heterogeneous Geometry objects.
See RFC 7946 Section 3.1.8 for the full specification.
Constructors
Link copied to clipboard
Create a GeometryCollection by a number of Geometry objects.
Types
Link copied to clipboard
object Companion
Factory methods for creating and serializing GeometryCollection objects.
Properties
Link copied to clipboard
The BoundingBox of this GeometryCollection.
Link copied to clipboard
The Geometry objects in this GeometryCollection.