open class ReverseGeocoderFullAddress : Serializable
The full address data object retrieved via a reverse geocoding request. Along with the standard address data, it also contains the latitude and longitude information.
ReverseGeocoderFullAddress()
The full address data object retrieved via a reverse geocoding request. Along with the standard address data, it also contains the latitude and longitude information. |
var additionalDataSources: AdditionalDataSources!
Ths is an optional section. It contains information about sources of additional data that can be used with the Additional Data service. |
|
var address: Address!
Detailed address of the result. |
|
var entityType: String!
This is an optional section. It only is present when the response contains the geography data. Contains the type of geography. (one of: "County", "CountrySubdivision", "CountrySecondarySubdivision", "CountryTeritarySubdivision", "Municipality", "MunicipalitySubdivision", "Neighborhood", "PostalCodeArea"). |
|
var matchType: String!
Deprecated |
|
var roadUse: Array<String!>!
The road use array used for reverse geocoding. |
open fun getAdditionalDataSources(): AdditionalDataSources!
Returns information about sources of additional data. |
|
open fun getAddress(): Address!
Returns the detailed address of the result. |
|
open fun getEntityType(): String!
Returns the type of the geography. |
|
open fun getMatchType(): String!
Returns the match type. |
|
open fun getPosition(): LatLng!
Returns the position for reverse geocoding. |
|
open fun getRoadUse(): Array<String!>!
Returns the road use array used for reverse geocoding. |
|
open fun toString(): String |