// // GMAnnotation.h // Gengmei // // Created by Thierry on 4/25/15. // Copyright (c) 2015 Wanmeichuangyi. All rights reserved. // #import #import @interface GMAnnotation : NSObject @property (nonatomic, assign) CLLocationCoordinate2D coordinate; @property (nonatomic, copy) NSString *title; @property (nonatomic, copy) NSString *subtitle; -(id) initWithCoordinate:(CLLocationCoordinate2D) coords; @end