Package-level declarations

Types

Link copied to clipboard
data class Feature(val geometry: Geometry?, val properties: Properties?, val boundingBox: GeoBoundingBox? = null) : GeoJsonObject

Represents a spatially bound entity that consists of a Geometry object and an ID. Both are optional. The feature is not placed on the map if the geometry is absent.

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

Represents a collection of Features.

Link copied to clipboard
data class Properties(val json: String)

Represents additional properties of a Feature.