Sha256: ea2ad32979376e5bcb48abba0d392db38392ded1ea5ff18fc2a0eee6b4fc3f3c
Contents?: true
Size: 823 Bytes
Versions: 65
Compression:
Stored size: 823 Bytes
Contents
#ifdef __IPHONE_3_0 #import <Foundation/Foundation.h> #import <CoreLocation/CoreLocation.h> #import "MapAnnotation.h" #define kGeoCodeURL @"http://maps.google.com/maps/geo?q=" @interface GoogleGeocoder : NSObject { NSMutableArray *annotations; MapAnnotation* currentAnnotation; NSString *theElement; NSString *gapikey; @public id actionTarget; SEL onDidFindAddress; } // @property (assign) id actionTarget; @property (assign) SEL onDidFindAddress; @property (nonatomic,retain) NSString *theElement; @property (nonatomic,retain) NSMutableArray *annotations; @property (copy) NSString* gapikey; // -(void)start; -(id)initWithAnnotations:(NSMutableArray*)annotations apikey:(NSString*)key; -(BOOL)geocode:(MapAnnotation *)annotation; -(CLLocation*)stringCooridinatesToCLLocation; @end #endif
Version data entries
65 entries across 65 versions & 1 rubygems