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.
28 lines
580 B
Objective-C
28 lines
580 B
Objective-C
//
|
|
// BMFMapView.h
|
|
// flutter_bmfmap
|
|
//
|
|
// Created by zbj on 2020/2/10.
|
|
//
|
|
#ifndef __BMFMapView__H__
|
|
#define __BMFMapView__H__
|
|
#ifdef __OBJC__
|
|
#import <BaiduMapAPI_Map/BMKMapComponent.h>
|
|
#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
|