open class FuzzySearchResult : Serializable
The result of a Search query.
FuzzySearchResult()
Empty constructor for the FuzzySearchResult(type: String!, id: String!, score: Double, address: Address!, position: LatLng!, viewport: BoundingBox!, distance: Double, info: String!, entityType: String!, poi: Poi!, boundingBox: BoundingBox!, entryPoints: Array<EntryPoint!>!, addressRanges: AddressRanges!, additionalDataSources: AdditionalDataSources!, mapCodes: Array<MapCode!>!, : Array<RelatedPoi!>!)
Default constructor for the |
var additionalDataSources: AdditionalDataSources!
Information about the sources of additional data that can be used with the Additional Data service. |
|
var address: Address!
The detailed address of the result. |
|
var addressRanges: AddressRanges!
Address ranges on a street segment. Only available for results where the result type is equal to "Address Range". |
|
var boundingBox: BoundingBox!
An 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. |
|
var distance: Double
The distance from the route provided in the request. |
|
var entityType: String!
(Only for results of type "Geography") The type of the entity (one of "County", "CountrySubdivision", "CountrySecondarySubdivision", "CountryTeritarySubdivision", "Municipality", "MunicipalitySubdivision", "Neighbourhood", "PostalCodeArea"). |
|
var entryPoints: Array<EntryPoint!>!
A list of entrances to the POI. |
|
var id: String!
The id of the result. |
|
var info: String!
Additional info. |
|
var mapCodes: Array<MapCode!>!
A list of MapCode objects. |
|
var poi: Poi!
Information about the POI. |
|
var position: LatLng!
The geographical position of the POI. |
|
var relatedPois: Array<RelatedPoi!>!
A list of RelatedPoi objects. |
|
var score: Double
The score of the result. |
|
var type: String!
The type of result (should always be "POI" (Points of Interest)). |
|
var viewport: BoundingBox!
The viewport. |
open fun getAdditionalDataSources(): AdditionalDataSources!
Returns information about the sources of additional data that can be used with the Additional Data service. |
|
open fun getAddress(): Address!
Returns the detailed address of the result. |
|
open fun getAddressRanges(): AddressRanges!
Returns the address ranges on a street segment. Only available for results where the result type is equal to "Address Range". |
|
open fun getBoundingBox(): BoundingBox!
Returns 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. |
|
open fun getDistance(): Double
Returns the distance from the route provided in the request. |
|
open fun getEntityType(): String!
Returns the type of the entity. |
|
open fun getEntryPoints(): Array<EntryPoint!>!
Returns a list of entrances to the POI. |
|
open fun getId(): String!
Returns the id of the result. |
|
open fun getInfo(): String!
Returns additional info. |
|
open fun getMapCodes(): ImmutableList<MapCode!>! |
|
open fun getPoi(): Poi!
Returns information about the POI. |
|
open fun getPosition(): LatLng!
Returns the geographical position of the POI. |
|
open fun getRelatedPois(): ImmutableList<RelatedPoi!>! |
|
open fun getScore(): Double
Returns the score of the result. |
|
open fun getType(): String!
Returns the type of result (should always be "POI" (Points of Interest)). |
|
open fun getViewport(): BoundingBox!
Returns the viewport. |
|
open fun toString(): String |