PoiDetails

class PoiDetails(val searchResultId: SearchResultId, val place: Place, val poi: Poi, val boundingBox: GeoBoundingBox? = null)

The details of a Point of Interest (Poi).

Constructors

Link copied to clipboard
constructor(searchResultId: SearchResultId, place: Place, poi: Poi, boundingBox: GeoBoundingBox? = null)

Properties

Link copied to clipboard

A rectangle into which the shape of the poi is inscribed.

Link copied to clipboard

The place information of the POI.

Link copied to clipboard
val poi: Poi

Information about the POI.

Link copied to clipboard

The ID of the POI.

Functions

Link copied to clipboard
operator fun component1(): SearchResultId
Link copied to clipboard
operator fun component2(): Place
Link copied to clipboard
operator fun component3(): Poi
Link copied to clipboard
operator fun component4(): GeoBoundingBox?
Link copied to clipboard
fun copy(searchResultId: SearchResultId = this.searchResultId, place: Place = this.place, poi: Poi = this.poi, boundingBox: GeoBoundingBox? = this.boundingBox): PoiDetails
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
open override fun toString(): String