MultiPoint
data class MultiPoint @JvmOverloads constructor(val coordinates: List<Position>, val bbox: BoundingBox? = null) : MultiGeometry, PointGeometry, Collection<Point> (source)
A MultiPoint geometry represents multiple points in coordinate space.
See RFC 7946 Section 3.1.3 for the full specification.
See also
Constructors
Link copied to clipboard
Create a MultiPoint by a number of Position objects.
Create a MultiPoint by a number of Point objects.
Create a MultiPoint by an array of DoubleArray objects that each represent a Position.
Types
Link copied to clipboard
object Companion
Factory methods for creating and serializing MultiPoint objects.