This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
//
// BMFMapPoiModel.h
// flutter_bmfmap
// Created by zhangbaojin on 2020/3/6.
#import "BMFModel.h"
@class BMFCoordinate;
@class BMKMapPoi;
NS_ASSUME_NONNULL_BEGIN
@interface BMFMapPoiModel : BMFModel
/// 点标注的名称
@property (nonatomic, strong) NSString *text;
/// 点标注的经纬度坐标
@property (nonatomic, strong) BMFCoordinate *pt;
/// 点标注的uid,可能为空
@property (nonatomic, strong) NSString *uid;
+ (BMFMapPoiModel *)fromBMKMapPoi:(BMKMapPoi *)poi;
@end
NS_ASSUME_NONNULL_END