//
//  Displaymap.h
//  Malvern Wedding Cars
//
//  Created by Nguyen Hieu on 1/29/13.
//  Copyright (c) 2013 Nguyen Hieu Gzone. All rights reserved.
//

#import <UIKit/UIKit.h>
#import <MapKit/MapKit.h>
@interface Displaymap : UIView <MKAnnotation>
{
    CLLocationCoordinate2D coordinate;
	NSString *title;
	NSString *subtitle;
    BOOL bs;
}

@property (nonatomic, assign) CLLocationCoordinate2D coordinate;
@property (nonatomic, copy) NSString *title;
@property (nonatomic, copy) NSString *subtitle;
@property (nonatomic ,assign)BOOL bs;
@end

