| 123456789101112131415161718 |
- //
- // CustomAnnotation.h
- // amap_location
- //
- // Created by i2edu on 2020/4/23.
- //
- #import <Foundation/Foundation.h>
- #import <MAMapKit/MAMapKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface CustomAnnotation : MAPointAnnotation
- @property (nonatomic, copy) NSString *phoneNumber; //商户名
- @property (nonatomic, copy) NSDictionary *map; //字典
- @end
- NS_ASSUME_NONNULL_END
|