MultiPolygon

data class MultiPolygon(val polygons: List<Polygon>, val boundingBox: GeoBoundingBox? = null) : Geometry, GeoJsonObject

A collection of Polygons.

Parameters

polygons

List of Polygons.

boundingBox

Bounding box of the MultiPolygon (optional).

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

Constructors

Link copied to clipboard
fun MultiPolygon(polygons: List<Polygon>, boundingBox: GeoBoundingBox? = null)

Properties

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