ExpoFpGeoAnchor

@Serializable
data class ExpoFpGeoAnchor(val x: Double, val y: Double, val lat: Double, val lng: Double)

Geographic anchor that ties a floor plan coordinate to a real world GPS location.

Constructors

Link copied to clipboard
constructor(x: Double, y: Double, lat: Double, lng: Double)

Properties

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

Latitude in decimal degrees.

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

Longitude in decimal degrees.

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

X coordinate in the floor plan coordinate system.

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

Y coordinate in the floor plan coordinate system.