MyAnnotationView.h 556 B

123456789101112131415161718192021
  1. //
  2. // MyAnnotationVieww.h
  3. // IphoneMapSdkDemo
  4. //
  5. // Created by wzy on 14-11-27.
  6. // Copyright (c) 2014年 Baidu. All rights reserved.
  7. //
  8. #import <BaiduMapAPI_Map/BMKMapComponent.h>
  9. @interface MyAnnotationView : BMKAnnotationView
  10. @property (nonatomic, assign) NSInteger size;
  11. @property (nonatomic, strong) UILabel *label;
  12. @property (nonatomic, strong) UIImageView *annotationImageView;
  13. @property (nonatomic, strong) NSDictionary *dic;
  14. +(instancetype)annotationViewWithMapView:(BMKMapView *)mapView Annotation:(BMKPointAnnotation *)annotation;
  15. @end