SearchResult

data class SearchResult(    val type: SearchResultType,     val searchResultId: SearchResultId,     val place: Place,     val distance: Distance? = null,     val poi: Poi? = null,     val boundingBox: GeoBoundingBox? = null,     val detour: Detour? = null)

Describes the details of a single result item returned by the Search API.

Constructors

Link copied to clipboard
constructor(    type: SearchResultType,     searchResultId: SearchResultId,     place: Place,     distance: Distance? = null,     poi: Poi? = null,     boundingBox: GeoBoundingBox? = null,     detour: Detour? = null)

Properties

Link copied to clipboard

A rectangle into which the shape of an administrative area is inscribed. Provided only if type is set to SearchResultType.Area.

Link copied to clipboard
val detour: Detour? = null

The detailed information about detour which should be taken to reach the search result position.

Link copied to clipboard
val distance: Distance? = null

Distance from the provided route.

Link copied to clipboard

The place information of the search result.

Link copied to clipboard
val poi: Poi? = null

Information about the Point Of Interest.

Link copied to clipboard

The ID of the result.

Link copied to clipboard

The type of result.