AMapInfoWindow.h 352 B

12345678910111213141516171819202122
  1. //
  2. // AMapInfoWindow.h
  3. // amap_flutter_map
  4. //
  5. // Created by lly on 2020/11/3.
  6. //
  7. #import <Foundation/Foundation.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface AMapInfoWindow : NSObject
  10. @property (nonatomic, copy) NSString* title;
  11. @property (nonatomic, copy) NSString* snippet;
  12. @property (nonatomic, assign) CGPoint anchor;
  13. @end
  14. NS_ASSUME_NONNULL_END