Tagged Questions
18
votes
8answers
11k views
MKPinAnnotationView: Are there more than three colors available?
According to the Apple docs, MKPinAnnotationView's pin color is available in red, green and purple. Is there any way to get other colors also? I've found nothing in the docs.
16
votes
5answers
6k views
Wanted: How to reliably, consistently select an MKMapView annotation
After calling MKMapView's setCenterCoordinate:animated: method (without animation), I'd like to call selectAnnotation:animated: (with animation) so that the annotation pops out from the newly-centered ...
7
votes
4answers
6k views
Custom MKPinAnnotation callout bubble similar to default callout bubble
i want to create a custom callout bubble on MKMapView. But i want to create the call out bubble in the same manner of default bubble. So how to create a View look like annotaion in this image
I want ...
4
votes
5answers
12k views
How can I create a custom “pin-drop” animation using MKAnnotationView?
I have an instance of MKMapView and would like to use custom annotation icons instead of the standard pin icons supplied by MKPinAnnotationView. So, I've setup a subclass of MKAnnotationView called ...
4
votes
2answers
3k views
Z-ordering of MKAnnotationViews
I'm getting fairly frustrated with the limitations of MKMapKit. My current problem has to do with the z-ordering of annotation views, particularly as it relates to touches. If you accept the default ...
2
votes
2answers
49 views
Displaying contact name when a pin is clicked on the mapview
I'm using the MapKit framework and I have used pins to display the exact address location of the contacts in my addressbook. Till now everything is working fine. But when i click on a pin I need to ...
1
vote
2answers
161 views
ios-mapkit, strange behavior with custom image annotations
I've written some code for showing annotations with custom images in a mapview.
My mapview delegate implements this method to customize annotation when they are put in the map:
- (MKAnnotationView *) ...
1
vote
0answers
184 views
drawRect not called on MKPinAnnotationView subclass
I implemented a class that extends MKPinAnnotationView. I want to draw something below the pin, which I hope to achieve by taking over the drawRect:rect message. I want to do this by painting ...
1
vote
2answers
351 views
Mapkit Annotation type when zooming in and out?
i am working with Mapkit and i am on SDK 4.2, i am having a strange bug here, in fact i have 3 annotation types, "blue.png", red.png,black.png. I am loading these by a flux and depending on the type ...
1
vote
2answers
2k views
Custon MKPinAnnotationColor
I have searched a bit on google, but didn't really found an answer to my question.
I want to create a pin with a different color, e.g. yellow or orange.
How should I do this? It seems that it's not ...
1
vote
2answers
2k views
iPhone MapKit: Annotation images get reset back to pins
I'm adding several annotations to a MapView and using a custom image instead of the default pins. I am using the viewForAnnotation delegate method to set the custom image like this:
view.image = ...
1
vote
1answer
1k views
how to show default user location and a customized annonation view in map kit?
i am using map kit and showing customized annonation view.one is carImage and the another one is userImage(as current location of user).now i want to show current user location default which is ...
0
votes
1answer
25 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
159 views
how to handle multiple pins are going to dropped at a one longitude & latitude in iphone sdk?
I have one task to develop application with map-kit.
I am getting multiple pins from server and one pin i have to drop from user current location. This user current location pin should be green & ...
0
votes
3answers
2k views
MKAnnotationView update title and subtitle with distance when event is received
I'm developing an iphone app using mapkit and CLLocationManager.
I put lots of MKPinAnnotationView on map (about 100) and I want to update all callout's subtitle whith user distance when I receive ...
0
votes
1answer
636 views
Any hint about stretching MkAnnotationView?
is there a way to stretch the bubble tha shows the details of an Annotation?
I need to use an accessory view and thus modify the size of the bubble.
Apparently it seems to be drawn in the lower layer ...