//
//  MyPinAddress.h
//  Minfo
//
//  Created by Nguyen Hieu on 1/14/13.
//  Copyright (c) 2013 Nguyen Hieu. All rights reserved.
//

#import <UIKit/UIKit.h>
#import <MapKit/MapKit.h>
@interface MyPinAddress : 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
