Questions tagged [mkpinannotationview]

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

MKPinAnnotationView implements an MKAnnotationView to display a push pin and is the only system-provided annotation view. It is the pin used in the Apple Maps application and enjoys widespread use in third party apps as well. Red, green, and purple pins are the only pin colors supported as of iOS 6.

For more information, see the Apple Documentation for MKPinAnnotationView.

165 questions
0
votes
1 answer

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 appear. The code is the follower: -…
doxsi
  • 1,002
  • 19
  • 42
0
votes
2 answers

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
1 answer

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 + text rather than text only. A screenshot…
El Dude
  • 5,328
  • 11
  • 54
  • 101
0
votes
2 answers

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 example: cellName
Apps
  • 103
  • 1
  • 10
0
votes
2 answers

Implementing MKPinAnnotationView drag feature?

Can anyone suggest a good tutorial for implementing dragging feature for MKPinAnnotationView in iPhone MKMapView?
Tinku George
  • 195
  • 2
  • 11
0
votes
1 answer

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 and the map is not moving smoothly after those…
0
votes
1 answer

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 visible. I have multiple annotation associated…
Ortensia C.
  • 4,666
  • 11
  • 43
  • 70
0
votes
1 answer

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 target:self…
Martol1ni
  • 4,684
  • 2
  • 29
  • 39
0
votes
2 answers

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 map.annotations) if (annotation != map.userLocation) …
cyclingIsBetter
  • 17,447
  • 50
  • 156
  • 241
0
votes
1 answer

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
R_RKumawat
  • 133
  • 15
0
votes
2 answers

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 anybody know from your previous experience how…
dsafa
  • 783
  • 2
  • 8
  • 29
0
votes
1 answer

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, thank you. [mapView setMapType:…
Edgars
  • 140
  • 1
  • 11
-1
votes
2 answers

How to set Image on DROP PIN in iOS MAP?

Normally, By default iOS image for drop pin looks like as below I want to display custom image instead of this pin, which method or way facilitates it. Thanks
Duaan
  • 609
  • 1
  • 13
  • 29
-1
votes
1 answer

CalloutAccessoryView view for MKPinAnnotationView

We have rightCalloutAccessoryView and leftCalloutAccessoryView for MKPinAnnotationView but is there if we need to add a custom button to the entire popup bubble how to add it the main requirement is i need to perform same action when we tap on Popup…
-1
votes
1 answer

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 picture on the left. I'm not sure if I need a…
anthoprotic
  • 827
  • 2
  • 13
  • 24
1 2 3
10
11