MAPointAnnotation.h 556 B

1234567891011121314151617181920212223
  1. //
  2. // MAPointAnnotation.h
  3. // MAMapKit
  4. //
  5. // Created by AutoNavi.
  6. // Copyright (c) 2013年 Amap. All rights reserved.
  7. //
  8. #import "MAShape.h"
  9. ///点标注数据
  10. @interface MAPointAnnotation : MAShape
  11. ///经纬度
  12. @property (nonatomic, assign) CLLocationCoordinate2D coordinate;
  13. ///是否固定在屏幕一点, 注意,拖动或者手动改变经纬度,都会导致设置失效
  14. @property (nonatomic, assign, getter = isLockedToScreen) BOOL lockedToScreen;
  15. ///固定屏幕点的坐标
  16. @property (nonatomic, assign) CGPoint lockedScreenPoint;
  17. @end