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.
34 lines
589 B
Objective-C
34 lines
589 B
Objective-C
//
|
|
// BMFPolylineModel.m
|
|
// flutter_bmfmap
|
|
//
|
|
// Created by zbj on 2020/2/11.
|
|
//
|
|
|
|
#import "BMFPolylineModel.h"
|
|
#import "BMFMapModels.h"
|
|
|
|
@implementation BMFPolylineModel
|
|
|
|
+ (NSDictionary *)bmf_setupObjectClassInArray{
|
|
return @{@"coordinates" : @"BMFCoordinate",
|
|
@"indexs" : @"NSNumber"
|
|
};
|
|
}
|
|
+ (NSDictionary *)bmf_setupReplacedKeyFromPropertyName{
|
|
return @{@"Id" : @"id"};
|
|
}
|
|
|
|
@end
|
|
|
|
|
|
@implementation BMFPolylineViewOptions
|
|
|
|
+ (NSDictionary *)bmf_setupObjectClassInArray{
|
|
return @{@"colors" : @"NSString",
|
|
@"textures" : @"NSString"
|
|
};
|
|
}
|
|
|
|
@end
|