Initializes a new instance of the
Request class.
Namespace:
Autoaddress.Autoaddress2_0.Model.ReverseGeocode
Assembly:
Autoaddress2.0SDK (in Autoaddress2.0SDK.dll) Version: 1.0.18
Syntaxpublic Request(
double latitude,
double longitude,
double maxDistance,
Language language,
Country country,
bool geographicAddress,
bool vanityMode,
string addressProfileName,
string txn = null
)
Public Sub New (
latitude As Double,
longitude As Double,
maxDistance As Double,
language As Language,
country As Country,
geographicAddress As Boolean,
vanityMode As Boolean,
addressProfileName As String,
Optional txn As String = Nothing
)
public:
Request(
double latitude,
double longitude,
double maxDistance,
Language language,
Country country,
bool geographicAddress,
bool vanityMode,
String^ addressProfileName,
String^ txn = nullptr
)
new :
latitude : float *
longitude : float *
maxDistance : float *
language : Language *
country : Country *
geographicAddress : bool *
vanityMode : bool *
addressProfileName : string *
?txn : string
(* Defaults:
let _txn = defaultArg txn null
*)
-> Request
Parameters
- latitude
- Type: SystemDouble
Latitude (ETRS89). - longitude
- Type: SystemDouble
Longitude (ETRS89). - maxDistance
- Type: SystemDouble
maximum distance to search from location in metres. Must be less than or equal to 100. - language
- Type: Autoaddress.Autoaddress2_0.ModelLanguage
Language. - country
- Type: Autoaddress.Autoaddress2_0.ModelCountry
Country. - geographicAddress
- Type: SystemBoolean
Return geographic address. - vanityMode
- Type: SystemBoolean
Return vanity address format, if it exists. - addressProfileName
- Type: SystemString
If supplied, a reformatted address (according to profile rules) is returned in the ReformattedAddress field. - txn (Optional)
- Type: SystemString
Transaction. If null then automatically assigned a value in associated response.
See Also