NMFScaleView
@interface NMFScaleView : UIView
축척 바 컨트롤.
-
이 컨트롤과 연결할 지도 객체.
nil
일 경우 컨트롤이 동작하지 않습니다.기본값은
nil
입니다.Declaration
Objective-C
@property (nonatomic, weak, nullable) NMFMapView *mapView;
Swift
weak var mapView: NMFMapView? { get set }
-
축척 바의 너비에 대한
NSLayoutConstraint
객체.Declaration
Objective-C
@property (nonatomic, weak, nullable) NSLayoutConstraint *scaleBarWidthConstraint;
Swift
@IBOutlet weak var scaleBarWidthConstraint: NSLayoutConstraint? { get set }
-
오른쪽 정렬이 활성화되어 있는지 여부. 활성화되면 오른쪽에 0이, 왼쪽에 축척이 표시됩니다.
기본값은
NO
입니다.Declaration
Objective-C
@property (nonatomic) BOOL rightToLeftEnabled;
Swift
var rightToLeftEnabled: Bool { get set }