PlaceMatch

Describes detailed information about a location obtained through reverse geocoding.

Constructors

Link copied to clipboard
constructor(place: Place, matchType: MatchType? = null, geometry: Geometry? = null, routeNumbers: List<String> = emptyList(), speedLimit: Speed? = null, boundingBox: GeoBoundingBox? = null)

Properties

Link copied to clipboard

The bounding box that encompasses the matched location.

Link copied to clipboard

The geographical geometry of the matched location, if available. This value is null when ReverseGeocoderOptions.fetchGeometry is set to false.

Link copied to clipboard

Information indicating the type of match for the location. This value is null when the ReverseGeocoderOptions.areaTypes filter is not empty.

Link copied to clipboard

The location information resulting from reverse geocoding.

Link copied to clipboard

A list of route numbers, designations, or abbreviations that identify a specific stretch of roadway, assigned by a highway authority. Urban roads might not have route numbers, while extra-urban roads should have them if present in the map data.

Link copied to clipboard

The speed limit applicable to the street, if available.

Functions

Link copied to clipboard
fun copy(place: Place = this.place, matchType: MatchType? = this.matchType, geometry: Geometry? = this.geometry, routeNumbers: List<String> = this.routeNumbers, speedLimit: Speed? = this.speedLimit, boundingBox: GeoBoundingBox? = this.boundingBox): PlaceMatch

Creates a copy of this PlaceMatch object with optional parameter overrides.