Geometry

@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

Constructors

Link copied to clipboard
constructor(coordinates: List<Double>? = emptyList(), type: String = POINT)

Properties

Link copied to clipboard
Link copied to clipboard