ExpoFpGeoConfig

@Serializable
data class ExpoFpGeoConfig(val bearing: Double, val p0: ExpoFpGeoAnchor, val p1: ExpoFpGeoAnchor? = null, val p2: ExpoFpGeoAnchor)

Geographic configuration of the floor plan: its orientation and the anchors that map local coordinates to GPS positions.

Constructors

Link copied to clipboard
constructor(bearing: Double, p0: ExpoFpGeoAnchor, p1: ExpoFpGeoAnchor? = null, p2: ExpoFpGeoAnchor)

Properties

Link copied to clipboard
@SerialName(value = "bearing")
val bearing: Double

Bearing in degrees clockwise from true north. 0 when the map is north aligned.

Link copied to clipboard
@SerialName(value = "p0")
val p0: ExpoFpGeoAnchor

Primary anchor point.

Link copied to clipboard
@SerialName(value = "p1")
val p1: ExpoFpGeoAnchor? = null

Optional secondary anchor point.

Link copied to clipboard
@SerialName(value = "p2")
val p2: ExpoFpGeoAnchor

Tertiary anchor point.