NMFIndoorView
@interface NMFIndoorView : NSObject
하나의 실내지도를 나타내는 불변 클래스.
-
구역 ID.
Declaration
Objective-C
@property (nonatomic, readonly) NSString *_Nonnull zoneId;
Swift
var zoneId: String { get }
-
층 ID.
Declaration
Objective-C
@property (nonatomic, readonly) NSString *_Nonnull levelId;
Swift
var levelId: String { get }
-
구역 ID와 층 ID로 객체를 생성하는 생성자.
Declaration
Objective-C
+ (nonnull NMFIndoorView *)indoorView:(nonnull NSString *)zoneId WithLevelId:(nonnull NSString *)levelId;
Swift
/*not inherited*/ init(_ zoneId: String, withLevelId levelId: String)
Parameters
zoneId
구역 ID.
levelId
층 ID.