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.
26 lines
408 B
Objective-C
26 lines
408 B
Objective-C
//
|
|
// BMFArclineModel.m
|
|
// flutter_bmfmap
|
|
//
|
|
// Created by zbj on 2020/2/15.
|
|
//
|
|
|
|
#import "BMFArclineModel.h"
|
|
#import "BMFMapModels.h"
|
|
@implementation BMFArclineModel
|
|
|
|
+ (NSDictionary *)bmf_setupObjectClassInArray{
|
|
return @{@"coordinates" : @"BMFCoordinate"};
|
|
}
|
|
|
|
+ (NSDictionary *)bmf_setupReplacedKeyFromPropertyName{
|
|
return @{@"Id" : @"id"};
|
|
}
|
|
|
|
@end
|
|
|
|
@implementation BMFArclineViewOptions
|
|
|
|
|
|
@end
|