The standard callout, a black bubble, is nice, but can this be customized? For instance I would like to make a white bubble version.
Custom callout view for MKAnnotation?
Asked Answered
Possible duplicate of Customizing the MKAnnotation Callout bubble –
Acetamide
There is a great answer to this problem here: Customizing the MKAnnotation Callout bubble
Where this answer is given by @MathieuF:
- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation{
MKAnnotationView *annotationView = [[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@"loc"];
// Button
UIButton *button = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];
button.frame = CGRectMake(0, 0, 23, 23);
annotationView.rightCalloutAccessoryView = button;
// Image and two labels
UIView *leftCAV = [[UIView alloc] initWithFrame:CGRectMake(0,0,23,23)];
[leftCAV addSubview : yourImageView];
[leftCAV addSubview : yourFirstLabel];
[leftCAV addSubview : yourSecondLabel];
annotationView.leftCalloutAccessoryView = leftCAV;
annotationView.canShowCallout = YES;
return pin;
}
That's great, but it doesn't deal with the triangle that comes down from the bubble, or variable width bubbles (to contain variable amounts of text) –
Worcester
@Worcester same problem here. Can you please let me know how did you solved it?? –
Gitt
i need two Buttons one on leftView & rightView ? how to add Custom Button with action to the Left View and rightView ? –
Backbreaker
© 2022 - 2024 — McMap. All rights reserved.