Advertisement
wkerswell

MapAnnotation

Nov 9th, 2012
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //  MapAnnotation.h
  2. //  CPOP Test 4
  3. //
  4. //  Created by Will Kerswell on 30/10/2012.
  5. //  Copyright (c) 2012 Will Kerswell. All rights reserved.
  6. //
  7.  
  8. #import <MapKit/MapKit.h>
  9.  
  10.  
  11. @interface MapAnnotation : NSObject<MKAnnotation>
  12.  
  13. @property (nonatomic, copy)     NSString*               categoryID;
  14. @property (nonatomic, assign)   CLLocationCoordinate2D  coordinate;
  15. @property (nonatomic, copy)     NSString*               title;
  16. @property (nonatomic, copy)     NSString*               subtitle;
  17. @property (nonatomic, copy)     NSString*               poiID;
  18. @property (nonatomic, copy)     NSURL*                  pinURL;
  19.  
  20. @end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement