CalloutMapAnnotation.h 448 B

123456789101112131415
  1. #import <Foundation/Foundation.h>
  2. #import <MapKit/MapKit.h>
  3. @interface CalloutMapAnnotation : NSObject <MKAnnotation>
  4. @property (nonatomic,assign) CLLocationDegrees latitude;
  5. @property (nonatomic,assign) CLLocationDegrees longitude;
  6. @property (nonatomic,assign) int tag;
  7. - (id)initWithLatitude:(CLLocationDegrees)latitude
  8. andLongitude:(CLLocationDegrees)longitude
  9. tag:(int)tag;
  10. - (CLLocationCoordinate2D)coordinate;
  11. @end