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.
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 ...
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
193 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
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
439 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
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
75 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
1answer
191 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
269 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
146 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
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
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
59 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
113 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
497 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
112 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
97 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
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
207 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
143 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
118 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
156 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
0answers
47 views

Traverse to next view on pin annotation touch

I have displayed a map containing 25 annotation and with the detail discloser button, and every thing seems to be working fine, now my problem is that on the hit of one discloser button i should be ...
0
votes
1answer
358 views

mkmap crashing when trying to get distance from user location to pin on map

For some reason whenever i click on my pin the app crashes. there are no errors or warnings in my code. It only happens when i try to get the distance from userLocation to the pin. find my mistake? ...
0
votes
1answer
368 views

How do I update/change color of a pin after it's already been placed in my mapview?

I'm making an applikation that will put pins/annotations in a mapview. When the user is getting close to a pin, I want the pin to change color. Everything works fine, the pins is placed where I want ...
0
votes
1answer
267 views

How to find which annotation send showDetails?

How to find which annotation send showDetails? MKPinAnnotationView* customPinView = [[[MKPinAnnotationView alloc] initWithAnnotation:annotation ...
0
votes
1answer
1k views

Reverse Geocoding on MKMapView by dragging Pins

I have a subclass "Location" of NSManagedObject and this class conforms to MKAnnotation. When I add a Location to a Map...the ReverseGeocoder starts. By clicking the pin I see in the callout View the ...
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
2answers
529 views

How can we change the color of the callout that comes when we press a pin in MKMapView?

The callout that is being displayed when we press an MKAnnotationPin can be customised to have image, title and also subtitle. Is it possible to change the blackcolor of the callout to some other ...
0
votes
2answers
1k views

Refresh my mapView

i have a mapView with pins on it, and the following code for CLLocation and getDistance between me and another points on the map: - (void)locationManager:(CLLocationManager *)manager ...
0
votes
1answer
145 views

show pins around 100kilometers

i am implementing an app, that show customers and my userLocation on a map. But now i have a problem, because there are a lot of costumers and the map is very uncomfortable. How can i only see pins ...
0
votes
1answer
131 views

use pin.title in other class

Hello i have implemented the following code: - (void) mapView:(MKMapView *)mapView annotationView:(MKAnnotationView *)annView calloutAccessoryControlTapped:(UIControl *)control { name = ...
0
votes
1answer
1k views

iPhone: MKAnnotation Pin Color “Selected-State”

Can anyone tell me how to change the "selected state" of a annotation pin color. Meaning if you have a group of 10 pins and they are red and if you select a pin it changes to purple.
0
votes
3answers
3k views

showsUserLocation returns pin instead of blue dot in iPhone simulator

This is my -mapView:viewForAnnotation method which drops pins when i create annotation views. But when i set mapView.showsUserLocation = YES; in -viewDidLoad, i get a pin dropped on Infinite Loop ...
0
votes
2answers
1k views

Custom MKPinAnnotationView Colours

Is it possible to define custom colours for the MKPinAnnotationView colour rather than the default red, green or purple? Docs say no... Thanks
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 ...