Sha256: bc9691eebe64a8543fba8e48861828d0607c7b5e4d59a3f3e96d242c5eb6e886

Contents?: true

Size: 947 Bytes

Versions: 6

Compression:

Stored size: 947 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"
#import "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 *gapikey;  
	//IBOutlet UISegmentedControl *mapType;
@public
	id  actionTarget;
	SEL onNavigate;

}

// 
@property (assign) id  actionTarget;
@property (assign) SEL onNavigate;
@property (copy) NSString* gapikey; 

//- (IBAction)changeType:(id) sender;
- (void)setParams:(rho_param*)params;

@end

#endif

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
rhodes-1.5.5 platform/iphone/Classes/MapView/MapViewController.h
rhodes-1.5.4 platform/iphone/Classes/MapView/MapViewController.h
rhodes-1.5.3 platform/iphone/Classes/MapView/MapViewController.h
rhodes-1.5.2 platform/iphone/Classes/MapView/MapViewController.h
rhodes-1.5.1 platform/iphone/Classes/MapView/MapViewController.h
rhodes-1.5.0 platform/iphone/Classes/MapView/MapViewController.h