MultiPoint

data class MultiPoint(val points: List<Point>, val boundingBox: GeoBoundingBox? = null) : Geometry, GeoJsonObject

A GeoJSON Geometry type comprising a collection of Points.

Parameters

points

List of Points.

boundingBox

Bounding box of the MultiPoint (optional).

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

Constructors

Link copied to clipboard
fun MultiPoint(points: List<Point>, boundingBox: GeoBoundingBox? = null)

Properties

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