Sha256: f03bc99195cf8cd5d5a1906fb4de69bfb9f5413050679840f5b6998eca27bc51
Contents?: true
Size: 1.18 KB
Versions: 32
Compression:
Stored size: 1.18 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" #import "MapViewManager.h" @interface MapViewController : RhoViewController <MKMapViewDelegate, MKReverseGeocoderDelegate> { 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; UIView* savedMainView; //IBOutlet UISegmentedControl *mapType; } // @property (copy) NSString *region_center; @property (copy) NSString *gapikey; @property (nonatomic,retain) UIView *savedMainView; + (void)createMap:(rho_param*)params; + (void)closeMap; + (BOOL)isStarted; + (double)centerLatitude; + (double)centerLongitude; - (void)setParams:(rho_param*)params; - (void)close; @end #endif
Version data entries
32 entries across 32 versions & 1 rubygems