Sha256: dd092d809ab88d2b4dcd5e2615b0e612cb4b3abedf34c8e900ce9d0d76ae1ce2
Contents?: true
Size: 1.01 KB
Versions: 11
Compression:
Stored size: 1.01 KB
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" #import "RhoViewController.h" #include "ruby/ext/rho/rhoruby.h" @interface MapViewController : RhoViewController <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
11 entries across 11 versions & 1 rubygems