BMKPointAnnotation.h 412 B

12345678910111213141516171819202122
  1. /*
  2. * BMKPointAnnotation.h
  3. * BMapKit
  4. *
  5. * Copyright 2011 Baidu Inc. All rights reserved.
  6. *
  7. */
  8. #import <Foundation/Foundation.h>
  9. #import "BMKShape.h"
  10. #import <CoreLocation/CLLocation.h>
  11. ///表示一个点的annotation
  12. @interface BMKPointAnnotation : BMKShape {
  13. @package
  14. CLLocationCoordinate2D _coordinate;
  15. }
  16. ///该点的坐标
  17. @property (nonatomic, assign) CLLocationCoordinate2D coordinate;
  18. @end