MAPointAnnotation.h 319 B

123456789101112131415161718192021
  1. //
  2. // MAPointAnnotation.h
  3. // MAMapKit
  4. //
  5. // Created by AutoNavi.
  6. // Copyright (c) 2013年 AutoNavi. All rights reserved.
  7. //
  8. #import "MAShape.h"
  9. /*!
  10. @brief 点标注数据
  11. */
  12. @interface MAPointAnnotation : MAShape
  13. /*!
  14. @brief 经纬度
  15. */
  16. @property (nonatomic, assign) CLLocationCoordinate2D coordinate;
  17. @end