Package-level declarations

Types

Link copied to clipboard
@Serializable
data class GeoJsonFeature(val geometry: Geometry? = null, val id: String = "", val properties: Map<String, JsonPrimitive> = emptyMap(), val type: String = FEATURE, val serverVersion: Int = 0) : Serializable
Link copied to clipboard
@Serializable
data class Geometry(val coordinates: List<Double>? = emptyList(), val type: String = POINT) : Serializable

A representation f a Point in a Map. Please note that these coordinates use longitude, latitude coordinate order (as opposed to latitude, longitude) to match the GeoJSON specification, which is equivalent to the OGC:CRS84 coordinate reference system. Refer to MapBox Geography and geometry documentation

Link copied to clipboard

Properties

Link copied to clipboard
const val FEATURE: String
Link copied to clipboard
const val POINT: String
Link copied to clipboard
const val TYPE: String