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.

45 lines
782 B
Objective-C

//
// BMFAnnotationHandles.h
// flutter_bmfmap
//
// Created by zhangbaojin on 2020/2/11.
//
#import "BMFMapViewHandle.h"
NS_ASSUME_NONNULL_BEGIN
@interface BMFAnnotationHandles : NSObject
/// BMFAnnotationHandler管理中心
+ (instancetype)defalutCenter;
- (NSDictionary<NSString *, NSString *> *)annotationHandles;
@end
#pragma mark - marker
@interface BMFAddAnnotation : NSObject<BMFMapViewHandler>
@end
@interface BMFAddAnnotations : NSObject<BMFMapViewHandler>
@end
@interface BMFRemoveAnnotation : NSObject<BMFMapViewHandler>
@end
@interface BMFRemoveAnnotations : NSObject<BMFMapViewHandler>
@end
@interface BMFCleanAllAnnotations : NSObject<BMFMapViewHandler>
@end
@interface BMFUpdateAnnotation : NSObject<BMFMapViewHandler>
@end
NS_ASSUME_NONNULL_END