NTGeocodingAddress
@interface NTGeocodingAddress : NTAddress
A geographical address describing country, region, county and other information.
-
Constructs an empty Address object.
Declaration
Objective-C
- (id)init;
-
Constructs a new address from the the country, region, county and other attributes.
Declaration
Objective-C
- (id)initWithCountry:(NSString *)country region:(NSString *)region county:(NSString *)county locality:(NSString *)locality neighbourhood:(NSString *)neighbourhood street:(NSString *)street postcode:(NSString *)postcode houseNumber:(NSString *)houseNumber name:(NSString *)name categories:(NTStringVector *)categories;
Parameters
country
The country name of the address.
region
The region name of the address.
county
The county name of the address.
locality
The locality name of the address.
neighbourhood
The neighbourhood name of the address.
street
The street name of the address.
postcode
The postcode of the address.
houseNumber
The house number of the address.
name
The name of the address.
categories
The category tags describing the address.
-
Undocumented
Declaration
Objective-C
-(void)dealloc;