MKPinAnnotationView implements an MKAnnotationView to display a push pin and is the only system-provided annotation view.

learn more… | top users | synonyms

0
votes
0answers
6 views

Getting the frame of Rect MKPinAnnotationView

I am writing an iPad app with an MKMapView which add adds a new annotation pin to the map with every tap of the user. I add the annotation (MKPinAnnotationView) to my MKMapView in the ...
0
votes
0answers
12 views

Custom Image of pin reverts to default image on mapview on longpress

As i m doing the mapkit,I am successful in changing the default image of pin to the custom image using the MKPinAnnotationView.I am using the MKPinAnnotationView instead of MKAnnotatiionView because ...
1
vote
1answer
20 views

Add thumbnail to an MKPinAnnotation

I have this Custom MKPinAnnotation to wich I need to add an image(Like a thumbnail). I should also be able to open the image fullscreen by tapping it. What is the best way to go around doing this?
0
votes
0answers
56 views

MKMapView callout with White background and multiline label and button [closed]

Edited for more clarification: I am developing an application which deals with map, Now what I need is the same callout like the mapkit provides but with some different view. For Eg: The default ...
1
vote
1answer
139 views

MKMapView iOS custom user location Annotation not showing/updating position

Hi I am using a custom annotation in replacement of the blue GPS position dot. I have added it to the map like so in the viewForAnnotation. OurLocAnnotation class conforms to MKAnnotation delegate. ...
0
votes
1answer
23 views

Telling the difference between UserLocation Pin and user added pins

I am trying to solve a problem that I'm not sure how to solve. In my app, when the mapkit launches, I drop a pin at the user's current location. The mapkit delegates to viewForAnnotation which sets ...
1
vote
3answers
137 views

MapKit custom pin annotation

I have the following files: annotation.h: #import <Foundation/Foundation.h> #import <MapKit/MapKit.h> @interface annotation : NSObject <MKAnnotation> @property(nonatomic, assign) ...
0
votes
1answer
48 views

MKMapViewDelegate is called but Pin does not drop as I set

I try to make a pin annotation to drop in MapView . But it doesn't . The view controller has one table view and I plug mapView into the header. DetailViewController - (void)viewDidLoad { ...
0
votes
1answer
85 views

MapView Problems - Pin change color when map reloded

I have a problem with the PIn color mapView when a refresh is done. In my I app i display some point with two color in order to identify if a service is available. On the first start, no problems ...
0
votes
2answers
118 views

How we can put label on custom pin in MapKit?

I want to display a dynamic label on custom pin. I used MKMapView, CLLocationManager,MKAnnotationView and MKPinAnnotationView. So, please help me friends. Like:
0
votes
1answer
109 views

ios 6.1 annotation view like in standard map

much has been written about customizing the callout bubble for mkannotaionviews, but let me please ask for help on this one. I want to mimic the default callout bubble from the 6.1 maps app, image + ...
1
vote
2answers
89 views

Getting Directions using only Apple map

I have a mapview in my app and i am using apple map's i read here that Mapkit can provide with the direction details as on the Mapview i am using the current location and the lat/long and i want that ...
1
vote
1answer
241 views

MKPinAnnotationView not working

I would like to have a MKMapView showing annotations with disclosure-buttons which lead to a view controller like the Golden Gate Bridge annotation in this Apple sample app. I load the coordinates ...
0
votes
2answers
77 views

Mapview not displaying Title or subtitle from pin annotation

App returns error when clicking the annotation pin. However it does not crash. It just does not show the title or subtitle. Error is (lldb) then list a string of numbers like 0x3516b5a0. plist ...
1
vote
1answer
75 views

How to adjust the frame of right accessor to top right in MapView annotation?

I want to add the right accessor image(cross image) to the top right corner as shown in the image below, but i am not able to get the code for it: I am using the following code but its not giving me ...
0
votes
0answers
45 views

How do you show three sets of data as three different colored pins on a MapKit map

I have parsed three sets of data and wish to show them as pins on a mapkit view. I can annotate the map with one color of pins (default) but don't seem to be able to change this default. Here is my ...
0
votes
3answers
227 views

Implementing MKPinAnnotationView drag feature?

Can anyone suggest a good tutorial for implementing dragging feature for MKPinAnnotationView in iPhone MKMapView?
1
vote
1answer
42 views

MKPinAnnotationView draggable option

I am using MKMapView in my iPhone app. I want to implement the pin annotation dragging feature. How can I implement this. The function setCoordinate: shows warning, MKPinAnnotationView may not ...
0
votes
0answers
48 views

Performance issue with multiple annotations

I'm trying to add multiple annotations to map view, while adding pins to map view, it is taking more time and the map is not moving smoothly, Whatever action I perform on map like tap, zoom and ...
0
votes
1answer
99 views

Clustered annotation pins take more time to add them on Mapview

I'm trying to add multiple annotations(nearly 30k) to map view, for this I use clustering mechanism and I added those group pins to map view, my problem is the pins take more time to add on map view ...
2
votes
1answer
213 views

MKPinAnnotationView pinColor

I can't figure out why a MKPinAnnotationView associated (in theory) with a MKPointAnnotation doesn't appear on the map. In fact, the pin appears but it isn't purple as it should be... Here is the ...
0
votes
0answers
81 views

custom map annotations, adding variable width to callout [original code by Asynchrony Solutions]

I'm attempting to make a public git project that uses custom map annotations for iphone maps. I have based all of my code so far off of ...
2
votes
2answers
110 views

Why when I press the AnnotationView sometime the image disappear?

In my MapView there are multiple annotationView, each with their own image, it happens that sometimes when I press the image, it disappears and never comes back if not reloading the viewController. ...
0
votes
1answer
57 views

Properties of custom Annotation don't visible in delegate methods

I have many custom annotations to whom I gave the property (NameTable and ID). I set this property before AddAnnotation the moment of creation, but these property in the delegate methods are no longer ...
0
votes
0answers
97 views

How to change the font of a MKPinAnnotationView on iOS 6?

I have a MapView on which I add pins (MKPinAnnotationView). I also have a picture on the left. The problem is when the title is too big, it's not displayed entirely (it's followed by "…"). How to make ...
-3
votes
1answer
2k views

iOS 6 Maps tutorial?

I can't seem to find a decent tutorial to use a map in my iOS 6 app. I got the part of adding the MapView, but I want to add pins in custom locations. I want my pin to have a title, a subtitle and a ...
0
votes
2answers
627 views

Changing pin color MKMapView

I add annotations to my map in this way: MyAnnotation *annotationPoint2 = [[MyAnnotation alloc] init]; annotationPoint2.coordinate = anyLocation; annotationPoint2.title = [NSString ...
0
votes
1answer
137 views

Use BarButtonItem as leftCallOutAccessoryView for MKPinAnnotationView?

The title pretty much explained it. Is it possible? I have tried to assign it like this: UIBarButtonItem *leftButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemSave ...
0
votes
1answer
161 views

Rotate MKAnnotationPinView according to the device heading

In my app I'm rotating the MapView according to the device heading, I have only one annotation and i'm rotating it's pin and it's pinView too. My rotation method is inside the next function - ...
1
vote
1answer
194 views

MKMapView viewForAnnotation: returning nil

I'm trying to remove a pin from a map. I have an observer on the @"selected" property of the MKPinAnnotationView so I know which object to delete. When the user taps the trash can icon and a pin is ...
2
votes
2answers
2k views

iOS 6 maps- not animating PIN drop

I have created a custom MKAnnotation class and it has been working - until iOS 6 came out. Since then my pins get added to the apple map but now without a drop animation! Is this how it is set or ...
0
votes
0answers
61 views

MKMapView Multicolor pin

How can I set three in built colors (i.e. green.red, purple) for MKPinAnnotationView, in viewforannotation method? For the reference purpose let me inform you I've added annotation for three times. ...
4
votes
1answer
475 views

How to set the rotation center of an MKAnnotationView

I've got a problem with my MKAnnotationViews when MKUserTrackingModeFollowWithHeading is enabled on the MKMapView. I positioned my images using the centerOffset property of the MKAnnotationView. ...
0
votes
2answers
449 views

IOS: MKPinAnnotationView animated drop don't work

I have this code to delete and add a new pin in my map: - (IBAction)setLocation:(id)sender{ NSMutableArray *toRemove = [NSMutableArray arrayWithCapacity:1]; for (id annotation in ...
0
votes
1answer
360 views

Draw Pin like MKPinAnnotation View Pin in MKMapVIew

I Want to draw a Pin programatically like MKPinAnnotationView Pin instead of using a Pin image. If anyone have idea please help me. Thanks
0
votes
0answers
112 views

MKPinAnnotationView remains “selected” but doesn't show callout on “long tap”

I have an application that has an MKMapView with a MKPinAnnotationView that gets dropped on the map in a location that is dependent on what building the user selects from a list of options (it's a ...
-2
votes
1answer
63 views

Can someone please just tell me how to simply go to a website by pressing the detailDisclosure button? [closed]

from my .m file ... return pinView; } (void)mapView:(MKMapView *)mapView annotationView:(MKAnnotationView *)view calloutAccessoryControlTapped:(UIControl *)control; { //what goes ...
1
vote
1answer
3k views

MKPinAnnotationView custom Image is replaced by pin with animating drop

I'm displaying user avatar images on a MapView. The avatars appear to be working if they are rendered without animation, however I'd like to animate their drop. If I set pinView.animatesDrop to true, ...
0
votes
2answers
1k views

MKPinAnnotationView versus MKAnnotationView

I've inherited a project which throws this warning Incompatible pointer types assigning to 'MKPinAnnotationView *' from 'MKAnnotationView *' at this line pinView=[[[MKAnnotationView ...
0
votes
2answers
995 views

Xcode Annotation from Property List

i know that similar questions have been already asked, but i just could find the answer. So, I'm building an app that has over 100 Pins, writing it into the implementation would be just to much. Does ...
0
votes
1answer
298 views

MKMap pin colors doesn't shows up

I can't imagine why it doesn't works.. I want change pin color, and use some other things that this method offers, but it just doesn't work. Maybe im using this method wrong? Example would be best, ...
1
vote
1answer
2k views

MKPinAnnotationView custom image

I would like to set a custom image instead of the normal pin on a Map. I also want it to be able to be opened and add the drop annimation for each one. Any suggestion? EDIT: Here is all I have - ...
2
votes
1answer
166 views

Annotation title cannot be shown after change the pincolor

I used this code to change the annotation's color,but after that,the title and subtitle can not be showed,how can I save this problem? The code are: - (MKAnnotationView *)mapView:(MKMapView *)mV ...
2
votes
2answers
337 views

Set MKPinAnnotationColorRed just for the first and last MKAnnotation on MKMapView

I've an NSArray of custom MKAnnotation, i need to set a red pin color for the first/last annotation, otherwise set a green pin. The program does not behave as i want, the green pins are associated ...
0
votes
1answer
107 views

MKPinAnnotationView - different actions in different Pins

I have a question about the MKPinAnnotationView. First of all I entered coordinates of the pins and after that called the viewForAnnotation to build them and also add them the a right button. But ...
1
vote
1answer
108 views

Avoiding MapView Pin-Clumping?

I am adding pins to a MKMapView using MKPinAnnotation view and was wondering if there is a way to stop pin-clumping (i.e. all the pins showing when zoomed out). Is there a way to do this using the API ...
7
votes
2answers
403 views

Smooth Movement of annotation image on Mapview

I have loaded the custom annotation image for user current location.I am updating the current user location after every 1 sec in background. NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] ...
0
votes
2answers
928 views

trying to push a detail view when the right button is tapped on the annotation of mapview in xcode

i wanted to display the detail view after tapping the right button on the annotation of mapview in xcode but i could not get the view to display , my code: - (void)showDetails:(id)sender { ...
0
votes
1answer
440 views

MKAnnotation Custom Callout button general action — how to know which Annotation it's coming from? (iPhone)

I'm developing a MapKit app which uses a whole bunch of MKAnnotations to mark locations. What I want is to put buttons into the callouts which the user can press to perform an action on the selected ...
0
votes
1answer
761 views

Double selection touch on MKPinAnnotationView

Edit: changed the title from : "Double tap .." to "Double selection touch.." I need to detect at least a second touch over a MKPinAnnotationView in my app. Currently I`m able to get the first touch ...

1 2 3