CustomLayerRenderParameters

class CustomLayerRenderParameters : Serializable

Parameters that define the current camera position for a `CustomLayerHost::render()` function.

Constructors

CustomLayerRenderParameters
Link copied to clipboard
open fun CustomLayerRenderParameters(width: Double, height: Double, latitude: Double, longitude: Double, zoom: Double, bearing: Double, pitch: Double, fieldOfView: Double, @NonNull projectionMatrix: List<Double>, @Nullable elevationData: ElevationData)

Functions

equals
Link copied to clipboard
open fun equals(object: Any): Boolean
hashCode
Link copied to clipboard
open fun hashCode(): Int
toString
Link copied to clipboard
open fun toString(): String

Properties

bearing
Link copied to clipboard
private val bearing: Double
elevationData
Link copied to clipboard
private val elevationData: ElevationData
fieldOfView
Link copied to clipboard
private val fieldOfView: Double
height
Link copied to clipboard
private val height: Double
latitude
Link copied to clipboard
private val latitude: Double
longitude
Link copied to clipboard
private val longitude: Double
pitch
Link copied to clipboard
private val pitch: Double
projectionMatrix
Link copied to clipboard
private val projectionMatrix: List<Double>
width
Link copied to clipboard
private val width: Double
zoom
Link copied to clipboard
private val zoom: Double