Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I m using map in my application. How to create a custom annotation in iphone? plz give the link to the source...

share|improve this question
Read Location Awareness Programming and the sample apps KMLViewer, MapCallouts, and WeatherMap. – Anna Karenina Nov 12 '10 at 13:38

1 Answer

up vote 0 down vote accepted

in viewForAnnotation function

-(MKAnnotationView *)mapView:(MKMapView *)mV viewForAnnotation:
(id <MKAnnotation>)annotation
{
    MKPinAnnotationView *pinView=nil;

    if(annotation!=mapView.userLocation)
    {
        static NSString *defaultPinID=@"com.invasivecode.pin";
        pinView=(MKPinAnnotationView *)[mapView dequeueReusableAnnotationViewWithIdentifier:defaultPinID];

        if(pinView==nil) 
            pinView=[[[MKPinAnnotationView alloc]initWithAnnotation:annotation reuseIdentifier:defaultPinID]autorelease];

        pinView.pinColor=MKPinAnnotationColorRed;    
        pinView.canShowCallout=YES;

        // to add button to annotation
        UIButton *infobutton=[UIButton buttonWithType:UIButtonTypeDetailDisclosure];

        // add ibaction to the button added
        [infobutton addTarget:self action:@selector(showdet:) forControlEvents:UIControlEventTouchUpInside];

        pinView.rightCalloutAccessoryView=infobutton;
        pinView.animatesDrop=YES;
        [defaultPinID release];
    }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.