SearchResult

data class SearchResult(    val score: Double,     val address: Address?,     val position: LatLng,     val distance: Double,     val info: String,     val poi: Poi?)

Data class of a search result.

Constructors

Link copied to clipboard
fun SearchResult(    score: Double,     address: Address?,     position: LatLng,     distance: Double,     info: String,     poi: Poi?)

Properties

Link copied to clipboard
val address: Address?
Link copied to clipboard
val distance: Double
Link copied to clipboard
val info: String
Link copied to clipboard
val poi: Poi?
Link copied to clipboard
val position: LatLng
Link copied to clipboard
val score: Double

The certainty that this is the correct result.