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

#import "Displaymap.h"
@implementation Displaymap
@synthesize coordinate,title,subtitle,bs;


-(id)init{
    if(!self)
    {
        [super init];
    }
    
    UIImageView *imgbackground = [[UIImageView alloc]initWithFrame:CGRectMake(0.0, 0.0, 200, 100)];
    [imgbackground setBackgroundColor:[UIColor whiteColor]];
    [self addSubview:imgbackground];
    [self bringSubviewToFront:imgbackground];
    
    
    return self;
}

-(void)dealloc{
	[title release];
	[super dealloc];
}
@end

