@Beta(2020, 12) data class FuzzySearchDetails : Serializable
Describes the details of the FuzzyOutcome returned by the Search API.
score
- The score of the result.
address
- The detailed address of the result.
position
- The geographical position of the POI.
distance
- The distance from the route provided.
info
- Additional information.
entityType
- (Only for results of type "Geography") The type of the
entity (one of "County", "CountrySubdivision", "CountrySecondarySubdivision", "CountryTeritarySubdivision",
"Municipality", "MunicipalitySubdivision", "Neighbourhood", "PostalCodeArea").
poi
- Information about the POI.
boundingBox
- A rectangle into which the shape of an administrative area is inscribed. Only available for
results where the result type is equal to "Geography", and municipality information is not present.
entryPoints
- A list of entrances to the POI.
addressRanges
- Address ranges on a street segment. Only available for results where the result
type is equal to "Address Range".
additionalDataSources
- Information about the sources of additional data that can be used with
the Additional Data service.
mapCodes
- A list of MapCode objects.
val additionalDataSources: AdditionalDataSources?
Information about the sources of additional data that can be used with the Additional Data service. |
|
val address: Address?
The detailed address of the result. |
|
val addressRanges: AddressRanges?
Address ranges on a street segment. Only available for results where the result type is equal to "Address Range". |
|
val boundingBox: BoundingBox?
A rectangle into which the shape of an administrative area is inscribed. Only available for results where the result type is equal to "Geography", and municipality information is not present. |
|
val distance: Double
The distance from the route provided. |
|
val entityType: String
(Only for results of type "Geography") The type of the entity (one of "County", "CountrySubdivision", "CountrySecondarySubdivision", "CountryTeritarySubdivision", "Municipality", "MunicipalitySubdivision", "Neighbourhood", "PostalCodeArea"). |
|
val entryPoints: List<EntryPoint>
A list of entrances to the POI. |
|
val id: String
The ID of the result. |
|
val info: String
Additional information. |
|
val mapCodes: List<MapCode>
A list of MapCode objects. |
|
val poi: Poi?
Information about the POI. |
|
val position: LatLng
The geographical position of the POI. |
|
val score: Double
The score of the result. |
|
val type: String
The type of result. |
|
val viewport: BoundingBox?
The viewport. |