ReverseGeocoderResponse

class ReverseGeocoderResponse constructor(val summary: ReverseGeocoderSummary, val places: List<PlaceMatch>)

Response of the Reverse Geocoding request.

Constructors

Link copied to clipboard
constructor(summary: ReverseGeocoderSummary, places: List<PlaceMatch>)

Properties

Link copied to clipboard

The list of matched places for the reverse geocoded location, sorted in descending order by score.

Link copied to clipboard

The summary of the request to the Reverse Geocoding API.

Functions

Link copied to clipboard
Link copied to clipboard
operator fun component2(): List<PlaceMatch>
Link copied to clipboard
fun copy(summary: ReverseGeocoderSummary = this.summary, places: List<PlaceMatch> = this.places): ReverseGeocoderResponse
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