// // BMFMapView.h // flutter_bmfmap // // Created by zbj on 2020/2/10. // #ifndef __BMFMapView__H__ #define __BMFMapView__H__ #ifdef __OBJC__ #import #endif #endif NS_ASSUME_NONNULL_BEGIN @interface BMFMapView : BMKMapView + (instancetype)viewWithFrame:(CGRect)frame; + (instancetype)viewWithFrame:(CGRect)frame dic:(NSDictionary *)dic; /// 更新地图属性(初始化时,部分参数会不生效),在地图加载完成时调用 - (BOOL)updateMapOptions; - (BOOL)updateMapViewWith:(NSDictionary *)dic; @end NS_ASSUME_NONNULL_END