FeatureCollection

@Serializable
data class FeatureCollection(val features: Array<GeoJsonObject>) : GeoJsonObject

A FeatureCollection is an array of features.

Constructors

Link copied to clipboard
constructor(featuresList: List<Feature>)
constructor(features: Array<GeoJsonObject>)

Properties

Link copied to clipboard

Functions

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
Link copied to clipboard
fun <R> map(transform: (GeoJsonObject) -> R): List<R>