ShowVenue

@Serializable
data class ShowVenue(    val firstMapId: String? = null,     val labelAllLocationsOnInit: Boolean = true,     val backgroundColor: String? = null,     val backgroundAlpha: Double? = null,     val multiBufferRendering: Boolean? = false,     val xRayPath: Boolean? = true)

ShowVenue holds the properties of values to be set when showing a venue.

Constructors

Link copied to clipboard
fun ShowVenue(    firstMapId: String? = null,     labelAllLocationsOnInit: Boolean = true,     backgroundColor: String? = null,     backgroundAlpha: Double? = null,     multiBufferRendering: Boolean? = false,     xRayPath: Boolean? = true)

Properties

Link copied to clipboard
val backgroundAlpha: Double? = null

Set background alpha of the map

Link copied to clipboard
val backgroundColor: String? = null

Set background color of the map when showing the venue

Link copied to clipboard
val firstMapId: String? = null

Set the first map with first map id when showing the venue

Link copied to clipboard
val labelAllLocationsOnInit: Boolean = true

Show the venue with labels on all locations

Link copied to clipboard
val multiBufferRendering: Boolean? = false

Multi-buffer rendering is currently an experimental feature that may be changed in future releases. Multi-buffer rendering should improve performance but may cause issues on older GPUs.

Link copied to clipboard
val xRayPath: Boolean? = true

xRay Paths is currently an experimental feature that may be changed in future releases. Journey path will be visible through other objects. Note: this is on by default, but requires the multiBufferRendering option (which is off by default) to be turned on.