You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
814 B
Objective-C
43 lines
814 B
Objective-C
//
|
|
// BMFArclineModel.h
|
|
// flutter_bmfmap
|
|
//
|
|
// Created by zbj on 2020/2/15.
|
|
//
|
|
|
|
#import "BMFModel.h"
|
|
|
|
@class BMFCoordinate;
|
|
@class BMFArclineViewOptions;
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface BMFArclineModel : BMFModel
|
|
|
|
/// flutter层arcline的唯一id(用于区别哪个arcline)
|
|
@property (nonatomic, copy) NSString *Id;
|
|
|
|
/// 指定的经纬度坐标点数组(需传入3个点)
|
|
@property (nonatomic, strong) NSArray<BMFCoordinate *> *coordinates;
|
|
|
|
/// arclineView属性model
|
|
@property (nonatomic, strong) BMFArclineViewOptions *arclineOptions;
|
|
|
|
@end
|
|
|
|
@interface BMFArclineViewOptions : BMFModel
|
|
|
|
|
|
/// 颜色16进制
|
|
@property (nonatomic, copy) NSString *color;
|
|
|
|
/// 线宽
|
|
@property (nonatomic, assign) int width;
|
|
|
|
/// 虚线类型
|
|
@property (nonatomic, assign) int lineDashType;
|
|
|
|
|
|
|
|
@end
|
|
NS_ASSUME_NONNULL_END
|