//
//  MapViewController.h
//  Agence
//
//  Created by Olivier Savard on 10-02-26.
//  Copyright 2010 OSInfo Informatique. All rights reserved.
//

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


@interface MapViewController : UIViewController
<CLLocationManagerDelegate, MKMapViewDelegate, UIAlertViewDelegate,MKAnnotation>{
	MKMapView *map;
	CLLocationCoordinate2D locate;
	UISegmentedControl *mapType;
	UIButton	*button;
	
}
@property(nonatomic,retain) IBOutlet MKMapView *map;
@property(nonatomic,retain) IBOutlet UISegmentedControl *mapType;
@property(nonatomic,retain) IBOutlet UIButton	*button;
@property(nonatomic,assign) CLLocationCoordinate2D locate;

- (IBAction)changeType:(id) sender;
- (IBAction)center;

@end
