//
//  MapConfig.h
//  Agence
//
//  Created by Olivier Savard on 11-01-28.
//  Copyright 2011 OSInfo Informatique. All rights reserved.
//

#import <UIKit/UIKit.h>
#import <MapKit/MapKit.h>


@interface MapConfig : UIViewController {
	UIPickerView *picker;
	NSArray *pickerData;
	CLLocationCoordinate2D *location;
}
@property (nonatomic,retain) IBOutlet UIPickerView *picker;
@property (nonatomic,retain) NSArray *pickerData;
@property (nonatomic, assign) CLLocationCoordinate2D *locationCentre;
-(IBAction)buttonPressed;
@end

