2
0

WFCULocationPoint.h 543 B

12345678910111213141516171819202122
  1. //
  2. // LocationPoint.h
  3. // WFChat UIKit
  4. //
  5. // Created by WF Chat on 2017/10/28.
  6. // Copyright © 2017年 WildFireChat. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <MapKit/MapKit.h>
  10. @interface WFCULocationPoint : NSObject<MKAnnotation>
  11. @property (nonatomic, readonly) CLLocationCoordinate2D coordinate;
  12. @property (nonatomic, readonly, copy) NSString *title;
  13. @property (nonatomic, strong) UIImage *thumbnail;
  14. - (instancetype)initWithCoordinate:(CLLocationCoordinate2D)coordinate andTitle:(NSString*)title;
  15. @end