Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
6
votes
2answers
3k views

Using MKAnnotationView without MKMapView?

I'm wondering if it's possible to use the MKAnnotationView inside a UIView other than MKMapView? I'm trying to find an alternative to using the undocumented UICalloutView class. I can create the ...
5
votes
7answers
7k views

MKMapView refresh after pin moves

A custom AnnotationView is updated with new coordinates. But the problem is that it visually updates only after some manipulations with MKMapView, e.g. zooming or moving. What should I do to manually ...
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 ...
3
votes
1answer
858 views

MKMapView: Pins over the pop up

This question was asked earlier by someone else but never answered: http://stackoverflow.com/questions/1458052/mkannotation-map-pin-callout-pops-up-behind-other-map-pins. I ran into this problem ...
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 ...
2
votes
1answer
194 views

pin drop animation

The default pin drop animation doesn't work in my app, here is some code I wrote: - (void)viewDidLoad { /* some code... */ [theMapView addAnnotation:addAnnotation]; ...
2
votes
1answer
91 views

Should I remove or hide my annotations in MKMapView?

I was wondering which would be faster/more efficient when it comes to taking off annotations from the map: hiding or removing. I need to remove and add 100 or so pins every time the user zooms in or ...
2
votes
1answer
2k views

MKPinannotation detail disclosure button - get directions - call number

FirstViewController.h #import <UIKit/UIKit.h> #import <MapKit/MapKit.h> @interface TransparentToolbar : UIToolbar{ } @end @interface AddressAnnotation : NSObject <MKAnnotation> { ...
2
votes
2answers
445 views

EXC_BAD_ACCESS with MKPinAnnotationView

I have a problem displaying my MKPinAnnotationView on the mapView in iOS. I get this error but i don't understand where the error comes from : "EXC_BAD_ACCESS". My code seems good : ...
2
votes
1answer
436 views

How to remove the first pin while dropping consecutive pins in maps in iphone?

I am new to iphone development.I have created map applications and displayed the cuurent location and drop a pin to the current location.On clicking the button "Find Me", it drops a pin in my current ...
2
votes
3answers
1k views

MKAnnotationViews with image in satellite map mode

I have successfully set custom image on MKAnnotationView to replace pins (i use the function setImage). But it's only works when the MKMapView type is "Standard". Satellite and Hybrid modes display ...
2
votes
1answer
13k views

Custom MKAnnotationView Callout [closed]

Possible Duplicates: Custom MKPinAnnotation callout bubble similar to default callout bubble customize callout bubble for annotationview? Does anyone know, or have code that shows, how to ...
1
vote
0answers
77 views

Physical movement tracking on Live Mapview in Iphone sdk?

I am using mapview which shows user's current location as well as one more pin which denotes another persons location say person A.I want to track person A physical Movement through iphone. That means ...
1
vote
2answers
162 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
1answer
78 views

How get latiude and longitude of point?

I am developing an iPhone Application in which i have provide Pin Annotation button on tool bar. When user click on button then pin will drop on center of map view. Now i want that user move that pin ...
1
vote
1answer
195 views

MKPinAnnotationView: Pin width and height

What is the width and the height of the MKPinAnnotationView pin in pixels? Edit: To be more concrete, the width and height of imaginary rectangle on iPhone screen containing the pin.
1
vote
0answers
272 views

MKPinAnnotationView and custom classes conforming to the MKAnnotation protocol

I have created the following method for determining the view for my annotations in a map view. - (MKAnnotationView *)mapView:(MKMapView *)mv viewForAnnotation:(id <MKAnnotation>)annotation { ...
1
vote
1answer
112 views

Pin annotation displaying the current location

I use the MKPinAnnotationView for pin annotation.Can i possibly display the curent address of the location as the pin annotation if i move the pin randomly on the map?
1
vote
2answers
61 views

If X is a subclass of Y objective-c

What is the syntax to say if (object isObjectOfClass Class){ object.color = 1; } I'm making a map application and i want to say "if this point on the map is a branch of THIS store- set the pin ...
1
vote
1answer
149 views

[MKAnnotationView setAnimatesDrop:]: unrecognized selector sent to instance. But why?

(MKAnnotationView *) mapView:(MKMapView *)theMapView viewForAnnotation:(id <MKAnnotation>)annotation { if ([annotation isKindOfClass: [MyLocation class] ]) { ...
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
1k views

How can drag MKPinAnnotationView pin only one tap?

i add MKPinAnnotationView and setDragAble. my code is here - (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation { MKPinAnnotationView ...
1
vote
0answers
258 views

how can I do make MKMapView's pin moving on Photo Album Places view of ios4

In iOS4's photo album place, the photo-pins join and split each others when the map is zoomed out and in. It's awesome experience! and I want to use same thing on my apps. I guess, it should not be ...
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
3k views

iPhone - remove pin annotations of map, but not mine

I use a MapView and I set annotations on it (purple pins) and my user location (which is a blue circle). Because the purple pin annotations will move, I have to remove and set them new to the map. I ...
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 ...
1
vote
3answers
7k views

Add image behind MKPinAnnotationView

I'm trying to add an image behind a MKPinAnnotationView. Seems like it should be rather easy to just do this in here: - (void)mapView:(MKMapView *)mapView didAddAnnotationViews:(NSArray *)views { ...
1
vote
1answer
1k views

Update coordinate property of MKAnnotation on parent viewcontroller after Touch End event?

I have written an application with a draggable annotation which I have added on top of a MKMapView. I've added a CLLocationCoordinate2D variable called myloc in my main view controller to store the ...
0
votes
1answer
26 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
61 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 ...
0
votes
1answer
121 views

Custom annotation pin changes to default red pin at long tap

I have custom annotation pin at app: - (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation { return [kml viewForAnnotation:annotation ...
0
votes
1answer
100 views

Not able to initialize CLLocationCoordinate2D iVar in MKAnnotation Classe

I am trying to put MKAnnotations on MKMapView. I am following the procedure that has been suggested on various available tutorials. I have created PlaceMark.h/.m file from NSobject Class as following. ...
0
votes
1answer
503 views

MapView Drop and Drag Pin - Custom MKAnnotationView iOS 5

I kept looking for hours, trying to get and update somehting to work on iOS 5 for a drop and drag pin. I think i'm pretty close... but stock when trying to init a custom annotation. Here's my class ...
0
votes
1answer
117 views

Subclassing MKPinAnnotationView

I'm creating my own annotation callout by subclassing MKPinAnnotationView. Everything works great, except for when I try to add buttons inside the new callout... the buttons are never called on ...
0
votes
1answer
98 views

why it show last pin's type of call out annotation in my mapview

I am designing a map view in which i am dropping no. of pins. I have also add a custom view on every pin. Now problem is that when my map view add all pins then on map it don't show my last pin. ...
0
votes
0answers
24 views

Pin Annotation from a nib

As said, I would like to load a nib instead of an image of a pin when displaying a pin annotation. Does anyone have clues about how to do that ? Thanks !
0
votes
1answer
141 views

How to do custom a view for MkAnnotation View As like custom cell for table view?

I making an application in which i have to implement feature like custom cell for table view. In that i have required a custom view which i can add with Mk-annotation View as we add custom cell with ...
0
votes
3answers
209 views

How add pin on map?

I have a view in which i have a map. On that view i have a tool bar. In tool bar i have a button for drop pin on map. Now i want to get methods for detecting pin drop and latitude and longitude of ...
0
votes
1answer
94 views

How to show a view when a user clicks on pin annotation?

I am developing a project in which I have parse json data and save it into an array. From that array, I have make a UITableView in which I have a number of businesses. With the help of their latitude ...
0
votes
1answer
63 views

How add title on pin?

for(int i=0;i<[btv_view.aray_cord count];i++) { //dm.title=[appDelegate.lB objectAtIndex:i ]; [mapView addAnnotation:[btv_view.aray_cord objectAtIndex:i]]; } I have use above code for ...
0
votes
1answer
146 views

MKPinAnnotationView not moving

I have went through a few links here, not all of them, regarding MKPinAnnotationView pin, subclass, etc. I did some simple tutorials online and when I thought I could start on my application with the ...
0
votes
2answers
119 views

How to get latitude and longitude of a city?

I am designing a project in which I have used two text fields. One is for source address and another one is for destination address. Now, I want to get latitude and longitude of both addresses and ...
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
2answers
480 views

How do I animate MKAnnotationView drop?

I have a custom MKAnnotationView where I set my image myself in viewForAnnotation. How do I animate it's drop like I can with MKPinAnnotationView? My code is - (MKAnnotationView ...

1 2