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.
22 lines
725 B
Objective-C
22 lines
725 B
Objective-C
|
|
#ifndef __BMFAnnotationMethodConst__H__
|
|
#define __BMFAnnotationMethodConst__H__
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
/// map添加marker
|
|
FOUNDATION_EXPORT NSString *const kBMFMapAddMarkerMethod;
|
|
/// map批量添加marker
|
|
FOUNDATION_EXPORT NSString *const kBMFMapAddMarkersMethod;
|
|
/// map删除marker
|
|
FOUNDATION_EXPORT NSString *const kBMFMapRemoveMarkerMethod;
|
|
/// map批量删除markers
|
|
FOUNDATION_EXPORT NSString *const kBMFMapRemoveMarkersMethod;
|
|
/// map清除所有的markers
|
|
FOUNDATION_EXPORT NSString *const kBMFMapCleanAllMarkersMethod;
|
|
/// marker添加完成
|
|
FOUNDATION_EXPORT NSString *const kBMFMapDidAddMarkerMethod;
|
|
/// 更新marker属性
|
|
FOUNDATION_EXPORT NSString *const kBMFMapUpdateMarkerMemberMethod;
|
|
#endif
|