// // PinAnnotation.m // MapTest // // Created by Jeremy on 7/10/09. // Copyright 2009 Stone Software. All rights reserved. // #import "PinAnnotation.h" @implementation PinAnnotation @synthesize coordinate; @synthesize currentTitle; @synthesize currentSubTitle; - (NSString *)subtitle { return currentSubTitle; } - (NSString *)title { return currentTitle;// @"Marker Annotation"; } - (id) initWithCoordinate:(CLLocationCoordinate2D)coord; { self = [super init]; if (self != nil) { coordinate = coord; } return self; } @end