Feature

@Serializable
data class Feature(val type: String? = null, val properties: Map<String, String>? = null, val geometry: Point? = null)(source)

GeoJSON Feature representing the vehicle location.

Constructors

Link copied to clipboard
constructor(type: String? = null, properties: Map<String, String>? = null, geometry: Point? = null)

Properties

Link copied to clipboard
@SerialName(value = "geometry")
val geometry: Point?
Link copied to clipboard
@SerialName(value = "properties")
val properties: Map<String, String>?
Link copied to clipboard
@SerialName(value = "type")
val type: String?