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
A Properties object representing properties in Feature in the World Geodetic System 1984 (WGS 84) or a collection of Geometry objects.