I would like to add an icon to the map view so that when people click on the icon, they see their current location.
I want to add the icon on the bottom left of this image:
How can I add that image to my map view?
I tried doing:
UIImage * l = [UIImage imageNamed: @"location.png"];
UIImageView * lb = [[UIImageView alloc] initWithImage: l];
[lb setFrame: CGRectMake(0, 300, lb.frame.size.width, lb.frame.size.height)];
[self.mapview addSubview: lb];