Sha256: e82f70b36ff7e03746e133774f2811d86acac60479c03b6920df2e19fc80e1f8
Contents?: true
Size: 1001 Bytes
Versions: 5
Compression:
Stored size: 1001 Bytes
Contents
// // MapViewController.h // // Created by Vlad on 9/16/09. // Copyright 2009 Rhomobile, Inc. All rights reserved. // #ifdef __IPHONE_3_0 #import <MapKit/MapKit.h> #import <MapKit/MKAnnotation.h> #import <MapKit/MKReverseGeocoder.h> #import "GoogleGeocoder.h" #include "common/rhoparams.h" @interface MapViewController : UIViewController <MKReverseGeocoderDelegate,MKMapViewDelegate> { MKMapView *mapView; MKReverseGeocoder *geoCoder; GoogleGeocoder* ggeoCoder; UIToolbar* toolbar; MKMapType mapType; BOOL zoomEnabled; BOOL scrollEnabled; BOOL showsUserLocation; BOOL region_set; MKCoordinateRegion region; NSString *region_center; CLLocationDegrees region_radius; NSString *gapikey; //IBOutlet UISegmentedControl *mapType; } // @property (copy) NSString *region_center; @property (copy) NSString *gapikey; + (void)createMap:(rho_param*)params; + (void)closeMap; - (void)setParams:(rho_param*)params; - (void)close; @end #endif
Version data entries
5 entries across 5 versions & 1 rubygems