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.
21 lines
458 B
Objective-C
21 lines
458 B
Objective-C
//
|
|
// BMFMapPoiModel.m
|
|
// flutter_bmfmap
|
|
//
|
|
// Created by zhangbaojin on 2020/3/6.
|
|
//
|
|
|
|
#import "BMFMapPoiModel.h"
|
|
#import "BMFMapModels.h"
|
|
#import <BaiduMapAPI_Map/BMKMapView.h>
|
|
|
|
@implementation BMFMapPoiModel
|
|
+ (BMFMapPoiModel *)fromBMKMapPoi:(BMKMapPoi *)poi{
|
|
BMFMapPoiModel *model = [BMFMapPoiModel new];
|
|
model.text = poi.text;
|
|
model.pt = [BMFCoordinate fromCLLocationCoordinate2D:poi.pt];
|
|
model.uid = poi.uid;
|
|
return model;
|
|
}
|
|
@end
|