123456789101112131415 |
- #import <Foundation/Foundation.h>
- #import <MapKit/MapKit.h>
- @interface CalloutMapAnnotation : NSObject <MKAnnotation>
- @property (nonatomic,assign) CLLocationDegrees latitude;
- @property (nonatomic,assign) CLLocationDegrees longitude;
- @property (nonatomic,assign) int tag;
- - (id)initWithLatitude:(CLLocationDegrees)latitude
- andLongitude:(CLLocationDegrees)longitude
- tag:(int)tag;
- - (CLLocationCoordinate2D)coordinate;
- @end
|