FeatureCollection

data class FeatureCollection(val features: List<Feature> = emptyList(), val boundingBox: GeoBoundingBox? = null) : GeoJsonObject

Represents a collection of Features.

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

Constructors

Link copied to clipboard
fun FeatureCollection(features: List<Feature> = emptyList(), boundingBox: GeoBoundingBox? = null)

Properties

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

Bounding box of the GeoJsonObject.

Link copied to clipboard