CameraTransformCoordinate

@Serializable
data class CameraTransformCoordinate(    val zoom: Double? = null,     val tilt: Double? = null,     val rotation: Double? = null,     val position: MPIMap.MPICoordinate? = null)

A configuration of the camera in space.

Constructors

Link copied to clipboard
fun CameraTransformCoordinate(    zoom: Double? = null,     tilt: Double? = null,     rotation: Double? = null,     position: MPIMap.MPICoordinate? = null)

Properties

Link copied to clipboard
val position: MPIMap.MPICoordinate? = null

A position in 3D space.

Link copied to clipboard
val rotation: Double? = null

Angle (in radians) the camera is rotated from north.

Link copied to clipboard
val tilt: Double? = null

Angle (in radians) of the camera to the ground. 0 means the camera is top-down.

Link copied to clipboard
val zoom: Double? = null

Distance (in meters) from the target.