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).

Constructors

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

Properties

Link copied to clipboard
open override val boundingBox: GeoBoundingBox? = null
Link copied to clipboard