An Apple protocol, used to provide annotation-related information to a map view
0
votes
1answer
22 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];
...
17
votes
5answers
17k views
How to remove all annotations from MKMapView without removing the blue dot?
I would like to remove all annotations from my mapview without the blue dot of my position. When I call:
[mapView removeAnnotations:mapView.annotations];
all annotations are removed.
In which way ...
0
votes
0answers
14 views
center point of MKAnnotation callout
can I readjust the center point of a MKAnnotationView's callout?
I already have a custom center point for my MKAnnotationView but the callout does not seem to align with it.
Thanks
1
vote
1answer
64 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
18 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
32 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
21 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
47 views
how to get the details of route direction in MKMapview
i want to get the direction route detail in MKMapview.i mentioned the one sample url below.likewise i want but don't want to go next URL. please anyone help if u know.is it possible or not in ios?
...
0
votes
2answers
193 views
Adding annotations in order -but map view does not return annotation in same order
I add my annotations as follows:
[mapView addAnnotations:annotationArray];
then I want to access each and individual annotations on the mapView as follows:
for (id<MKAnnotation> ann in ...
2
votes
2answers
283 views
iOS Custom MKAnnotation object resembling MKUserLocation animation
I want to drop MKAnnotationView pins on a map and have the pins be animated much like the MKUserLocation animates (the blue dot with circular waves coming out)
How do you achieve this type of ...
0
votes
2answers
56 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
107 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 ...
1
vote
1answer
131 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
2answers
24 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 ...
0
votes
1answer
88 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 ...