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