YMKAddressRecord

Важно

This feature is available in the NaviKit SDK version.

@interface YMKAddressRecord : NSObject

Summary

Class methods

+ (nonnull YMKAddressRecord *)addressRecordWithTitle:(nonnull NSString *)title
                                         description:(nullable NSString *)description
                                             comment:(nullable NSString *)comment
                                             address:(nullable NSString *)address
                                            geometry:(nullable YMKGeometry *)geometry
                                                 uri:(nullable NSString *)uri;

Properties

@property (nonatomic, readonly, nonnull) NSString *title;

@property (nonatomic, readonly, nullable) NSString *description;
Optional field, can be nil

@property (nonatomic, readonly, nullable) NSString *comment;
Optional field, can be nil

@property (nonatomic, readonly, nullable) NSString *address;
Optional field, can be nil

@property (nonatomic, readonly, nullable) YMKGeometry *geometry;
Optional field, can be nil

@property (nonatomic, readonly, nullable) NSString *uri;
Optional field, can be nil

Class methods

addressRecordWithTitle:description:comment:address:geometry:uri:

+ (nonnull YMKAddressRecord *)addressRecordWithTitle:(nonnull NSString *)title
                                         description:(nullable NSString *)description
                                             comment:(nullable NSString *)comment
                                             address:(nullable NSString *)address
                                            geometry:(nullable YMKGeometry *)geometry
                                                 uri:(nullable NSString *)uri;


Properties

title

@property (nonatomic, readonly, nonnull) NSString *title;


description

@property (nonatomic, readonly, nullable) NSString *description;

Optional field, can be nil.


comment

@property (nonatomic, readonly, nullable) NSString *comment;

Optional field, can be nil.


address

@property (nonatomic, readonly, nullable) NSString *address;

Optional field, can be nil.


geometry

@property (nonatomic, readonly, nullable) YMKGeometry *geometry;

Optional field, can be nil.


uri

@property (nonatomic, readonly, nullable) NSString *uri;

Optional field, can be nil.


Предыдущая
Следующая