NSDK_Address
@interface NSDK_Address : NSObject
Contains information about an address to be geocoded or information about a geocoded location
@author PTV AG Karlsruhe
-
Sets the country code. The encoding is taken from the international license plate codes.
Declaration
Objective-C
- (void)setCC:(NSString *)cc;
Swift
func setCC(_ cc: Any!)
Parameters
cc
- the country code.
-
Returns the country code. The encoding is taken from the international license plate codes.
Declaration
Objective-C
- (NSString *)getCC;
Swift
func getCC() -> Any!
Return Value
the country code.
-
Sets the postcode of address.
Declaration
Objective-C
- (void)setPostcode:(NSString *)postcode;
Swift
func setPostcode(_ postcode: Any!)
Parameters
postcode
- the postcode of address.
-
Returns the postcode of address.
Declaration
Objective-C
- (NSString *)getPostcode;
Swift
func getPostcode() -> Any!
Return Value
the postcode of address.
-
Sets the name of the town.
Declaration
Objective-C
- (void)setTown:(NSString *)town;
Swift
func setTown(_ town: Any!)
Parameters
town
- the name of the town.
-
Returns the name of the town.
Declaration
Objective-C
- (NSString *)getTown;
Swift
func getTown() -> Any!
Return Value
the name of the town.
-
Sets the name of the street.
Declaration
Objective-C
- (void)setStreet:(NSString *)street;
Swift
func setStreet(_ street: Any!)
Parameters
street
- the name of the street.
-
Returns the name of the street.
Declaration
Objective-C
- (NSString *)getStreet;
Swift
func getStreet() -> Any!
Return Value
the name of the street.
-
Sets the house number.
Declaration
Objective-C
- (void)setHnr:(NSString *)hnr;
Swift
func setHnr(_ hnr: Any!)
Parameters
hnr
- the house number.
-
Returns the house number.
Declaration
Objective-C
- (NSString *)getHnr;
Swift
func getHnr() -> Any!
Return Value
the house number.