MyAnimatedAnnotationView.h 477 B

123456789101112131415161718
  1. //
  2. // MyAnimatedAnnotationView.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 MyAnimatedAnnotationView : BMKAnnotationView
  10. @property (nonatomic, strong) UIImageView *annotationImageView;
  11. @property (nonatomic,strong) NSDictionary *dic;
  12. +(instancetype)annotationViewWithMapView:(BMKMapView *)mapView Annotation:(BMKPointAnnotation *)annotation;
  13. @end