// // CustomCalloutView.h // amap_location // // Created by i2edu on 2020/4/23. // #import #import #import NS_ASSUME_NONNULL_BEGIN @interface CustomCalloutView : UIView @property (nonatomic, copy) NSString *title; //商户名 @property (nonatomic, copy) NSString *subtitle; //地址 @property (nonatomic, copy) NSString *phoneNumber; //电话 @end @interface CustomAnnotationView : MAAnnotationView @property (nonatomic, strong, readwrite) CustomCalloutView *calloutView; @property (nonatomic, strong, readwrite) FlutterMethodChannel* channel; @end NS_ASSUME_NONNULL_END