FeatureCollection

A FeatureCollection object has a member with the name "features". The value of "features" is a JSON array. Each element of the array is a Feature object. It is possible for this array to be empty. https://datatracker.ietf.org/doc/html/rfc7946#section-3.3

Constructors

Link copied to clipboard
constructor()

Properties

Link copied to clipboard
@Json(name = "bbox")
var bbox: List<Double>?
Link copied to clipboard
@Json(name = "features")
var features: ArrayList<Feature>
Link copied to clipboard

In the (abridged) Feature object shown below

Link copied to clipboard
@Json(name = "properties")
var properties: HashMap<String, Any?>?
Link copied to clipboard
@Json(name = "type")
var type: String

Functions

Link copied to clipboard
Link copied to clipboard
open fun forEach(p0: Consumer<in Feature>)
Link copied to clipboard
open operator override fun iterator(): Iterator<Feature>
Link copied to clipboard
operator fun plusAssign(rhs: Feature)
operator fun plusAssign(rhs: FeatureCollection)
Link copied to clipboard