An Apple protocol, used to provide annotation-related information to a map view

learn more… | top users | synonyms

0
votes
1answer
28 views

TableView Showing Map Annotation Titles and Subtitles

I am trying to create a table view that shows a list of my map annotations. Each cell would contain the name(title) and address(subtitle). I'm then going to add a search bar to the table view. When ...
0
votes
1answer
21 views

Mapkit addAnnotation exception: unrecognized selector sent to instance

My code relevant to the problem: Annotation .h file #import <Foundation/Foundation.h> #import <MapKit/MapKit.h> @interface CityAnnotation : NSObject <MKAnnotation> { ...
0
votes
0answers
48 views

i want to get detail disclosure button when i click red pin eg:see image

i want to get detail disclosure button when i click red pin. - (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id<MKAnnotation>)annotation { static NSString *identifier ...
0
votes
0answers
18 views

iOS: MapKit: ADCclusterMapView: update subtitle of annotation

I am using ADClusterMapView for annotation clustering https://github.com/applidium/ADClusterMapView and i have been trying for a VERY long time now to manipulate the files in order to be able to ...
0
votes
2answers
26 views

MKAnnotation - Multiple annotations not appearing

I wrote a test application for a MKMapView after having problems with my application. My problem is that I cannot place multiple pins on a map. Using this code in a viewDidLoad: method, 10 pins SHOULD ...
0
votes
0answers
25 views

Customize MKAnnotation to Display Different Icons Loaded from Parse SDK (Parse.com)

I have an iPhone app with a map that displays objects downloaded from a table on Parse (www.Parse.com). I'm trying to get each GeoPoint stored on the Parse table to display a unique icon on the map, ...
0
votes
0answers
26 views

Swap two annotations by drag&drop

Is it possibile to swap two annotation on a MKMapView? I made the MKAnnotationView draggable with: self.draggable = YES; self.animatesDrop = YES; and implemented the -setCoordinate: method of the ...
0
votes
2answers
37 views

How do I pass MyLocation object from Mapview to tableview?

I have a mapview that fetches from coredata and gets an array of Location objects. Location objects are custom NSManagedObjects that look like this: @property (nonatomic, retain) NSString * ciudad; ...
0
votes
5answers
102 views

Objective C, what [NSString initWithFormat] exactly does?

I just would like to know the difference between the line 1 and 2 bellow: _subtitle = @"Test"; //Line 1 _subtitle = [NSString stringWithFormat: @"Test"]; //Line 2 If I asked that question, it is ...
-1
votes
3answers
55 views

Cannot access defined property of personnal class

The thing is that I have a main class : MyAnnotation, created to display annotations on my mapView. @interface lieuAnnotation : MyAnnotation @property(readonly, nonatomic) UIImage *uneImage; // I ...
0
votes
2answers
56 views

What exactly is this grey colored popup called in MapKit & what method gets called when tapped?

Ok I have this mapview with location pins, 5 shown here: But what is the grey popup that shows up when you tap a pin, called? And what method gets called when you tap on the pin, that contains or ...
1
vote
2answers
27 views

How to add a uitexfield & a uibutton in MKPinAnnotationView callout?

Hello there i was wondering if there is any way to add a UITextField & a UIButton in MKPinAnnotationView callout bubble and in turn if the user clicked button it will call some method?
0
votes
1answer
52 views

Centering MKMapView on an annotation

Although the process for doing this is well documented, I am unable to solve this problem. All I want to do is to take the coordinate at which I have just created an annotation and have the map zoom ...
0
votes
1answer
23 views

MKAnnotation rotating when pinching the map

I have an app where I am tracking someone who walks. Once I get the users heading, I rotate the MKAnnotationView based on the heading. Everything works when tracking and rotating the MKAnnotationView ...
0
votes
1answer
38 views

MKAnnotation not updating position

I am using the HGMovingAnnotation and HGMovingAnnotationView code off of github to animate a MKAnnotation on an MKmap. When I run the example project from HG project everything works fine. I have ...
0
votes
1answer
52 views

Adding MultiplePointAnnotation In MapView ios

Im trying to load annotation point into mapview in which i have the seperate array for latitude and a seperate array for longitude here is my code - (void)viewDidLoad { [super viewDidLoad]; ...
1
vote
1answer
81 views

MKPointAnnotation not working

Hello i got this method: -(void)adresseZeigen { NSLog(@"%s",__PRETTY_FUNCTION__); selectedAnnotation = [[MKPointAnnotation alloc]init]; selectedAnnotation.title = selectedCompanyName; ...
0
votes
1answer
34 views

App crash while loading MKAnnotation in map view

In my application i have integrated a view controller like container (split view). Controller view controller container two view. Detail view and selection view(table view). While selecting the ...
0
votes
1answer
75 views

MKPointAnnotation tag

Simple Question: Seems I cannot find the tag attribute for MKPointAnnotation class. It return error; MKPointAnnotation *annotation = [[HCIAnnotationViewController alloc] ...
0
votes
1answer
32 views

Calculating distance between user & a nearby location, and calculated distance keeps showing up as 0?

I'm using the following code to calculate the distance between my app user's location, and nearby locations (annotations). When I try to display the "Distance Away" as text in a label, it keeps saying ...
0
votes
1answer
107 views

how to get the details of route direction in MKMapview

I want to get the direction route detail in MKMapview. I mentioned one sample url below. likewise I want but don't want to go next URL. please anyone help, if you know. Is it possible or not in ios? ...
0
votes
2answers
72 views

Custom annotations with same image

As you can see in the image below that all annotations have same image and discount which is not correct, they should have different image and discount. How can I fix this? I am using a custom ...
0
votes
1answer
312 views

How to create Custom MKAnnotationView and custom annotation title and subtitle

i need to create above Annotation view on MKMapView. I am able to create the custom annotation view but on the tap of annotation the view need to be opened image with that big text , I am not able ...
0
votes
2answers
47 views

Dropping Placemark on current location and seperate location mkmapview

I'm having a few issues with MKMapView! I'm new to the mapping! What i'm trying to do: Mapview loads up and drops a placemarker on user's current location, and on the address of the selected ...
1
vote
1answer
197 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
200 views

Draw polyline in mapview iOS 6

Hi I'm doing an app that must to show a map with the route. I parsed a Json to obtain the points to draw the polyline. I found a a code in the web to draw this polyline. The code I found it's on this ...
0
votes
1answer
65 views

Why is my image upside down after using CGContextSetFillColorWithColor

I am trying to apply a color fill to the MKAnnotation. I found some code that pretty much works but for some reason the filled image is upside down after applying the fill to it. Here is the current ...
0
votes
2answers
84 views

MKMapView delegate's viewForAnnotation method is called but both parameters are nil

As the title says the method - (MKAnnotationView *)mapView:(MKMapView *)mapView1 viewForAnnotation:(id <MKAnnotation>)annotation { is called, both the mapView1 and the annotation are nil I ...
0
votes
2answers
135 views

Get Location information Using CLPlaceMark And CLGeocoder

I have been completed drawing the route between two places using ClLocationCoordinate2D on map in ios 6 dynamically.Can anyone please help me out in getting the location name using CLPlacemark and ...
0
votes
2answers
285 views

Mapkit :How to add annotation on MKLocalSearch results placemarks?

Basically I need a way to put annotation on all the "Walmarts" that search request picks up. I am not using interface builder, I am just using code for this app. MKMapView * map = [[MKMapView ...
0
votes
1answer
50 views

Add type to annotation so I can filter Annotation array in the 3 pin colors

I'm new to xcode - I made a map and added some Annotations using a MutableArray. I would like to divide them in to 3 groups and show them on the map using the 3 different pin colors. Hope you can help ...
0
votes
2answers
61 views

Difference between Placemarks and Annotations

Not very well versed with iOS Development. I have a very stupid question to ask!! is there a difference between Placemarks and Annotations. Ive been through some Apple Developer documents. Somewhere ...
1
vote
1answer
144 views

mapView:viewForAnnotation: not called when delegate set in code

I have a custom class for my MKAnnotations, I want to override the default mapView:viewForAnnotatation method so that I can add extra information in the callout. When I set my delegate in code (as per ...
0
votes
0answers
113 views

IOS MapKit - How to put an image near the annotation description

I have created a custom MKAnnotation. and manage to put a custom pin also. But I couldn't find where can I put an image near the text (In the attached image - the red circle). The code for the ...
0
votes
2answers
145 views

Monotouch mapkit mkannotation collection gives errors

New to monotouch aka xamarin ios. Trying to get a robust mapkit working that can take a number of pins. Experimenting with a basic example that I've cobbled together from a variety of sources that I ...
0
votes
1answer
19 views

Selecting a value from a database an check if it is true or false

This code always returns true can some please help me out public boolean plselct(String sqd) { try{ String player ; pm = conn.prepareStatement("SELECT playertype FROM ...
0
votes
1answer
254 views

MKMapView clustering if too many Map Pins nearby

I'm wondering if any of you knows a method (library, category, etc.) to cluster iOS MapAnnotations if there are many of them at the same location (e.g. 4 pieces in about 10m). It doesn't matter to ...
1
vote
3answers
194 views

Trouble creating a custom annotation class in ios

I'm trying to make a custom MKAnnotation class so it can hold additional information but i keep getting this error : Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: ...
0
votes
1answer
59 views

Detect if a location is visible on rotating MkMapView

I am using an MkMapView with mkusertrackingmodefollowwithheading tracking mode so that the map rotates according to the compass heading. I need to know if a particular location is visible on the ...
0
votes
2answers
132 views

MKMapView Cannot Set Center By Location

I want to get current location and animate to this coordinate on MKMapView. I got current location but I didn't do animate to this location on MKMapView. How can I animate to current location with ...
0
votes
2answers
164 views

add id to pin annotation in objective c to load detailview

I have a mapview controller which shows pins from an array of business objects I have created (each business has a method to get the title and subtitle of the pin). I have added a disclosure button ...
2
votes
1answer
145 views

Rotate only view and not its subviews

Is there any way by which transform of a view for rotation wont be passed to its subviews? I have a custom MKAnnotationView which I am rotating according to the heading values of the user. In below ...
0
votes
4answers
237 views

mkmapview MKUserLocation AnnotationView

I'm trying to create custom annotationviews for the annotations on my map. I'm doing that by adapting the protocol MKMapViewDelegate and overwriting the function mapView:viewForAnnotation:. It all ...
0
votes
1answer
82 views

did select annotation for multiple markers

I am adding multiple markers in the map view like this, markers = [jsonDict objectForKey:key]; for (id k in markers) { if ([k isEqualToString:@"latitude"]) { ...
0
votes
0answers
47 views

Trying to Customize Annotation

I implemented my custom annotation method with the code below, but my annotation from that class are still coming up as the default red pin and not my custom image. Any help will be appreciated. - ...
0
votes
1answer
50 views

Issues with Multiple MKMapViews in IOS Application

I've been having an issue with having multiple MKMapViews in my iOS application. We are currently using a TabBarController for basic navigation. The issue comes up when a MKMapView's annotation's ...
1
vote
1answer
259 views

iOS - How to use mkmapview as location picker

In my app I have two address UITextfields to be filled up using address text. I want this behavior: As soon as user enters address textfield, a map appears from down. (already done) User plays with ...
0
votes
1answer
102 views

MKPointAnnotation Expression is not assignable

So I have the following code block, which is supposed to iterate over an array of JSON objects and place MKPointAnnotations on a map: for(id jsonObject in dataArray) { NSLog(@"%d",[dataArray ...
0
votes
1answer
73 views

Multiple pins drooping at same point when using MKMapView

I have written code to search something which returns the lat and long and accordingly I am dropping pins at corresponding location. A lot of times i can see multiple pins dropping at the same ...
0
votes
1answer
56 views

User experience with map kit [closed]

Is it true that annotations in MapKit Framework are loaded lazily? By logging I found out that the viewForAnnotation is called at the start of loading Map itself. Also I wish to load only those ...

1 2 3 4 5 12