Tagged Questions
0
votes
1answer
14 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
20 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
34 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];
...
0
votes
0answers
20 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
67 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
19 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
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
49 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
58 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
2answers
29 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
139 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
95 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
1answer
38 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
0answers
72 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
1answer
104 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
106 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
49 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
102 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 ...
2
votes
1answer
114 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
156 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
0answers
39 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
36 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
200 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
70 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
2answers
454 views
MKMapView MKPointAnnotation tap event
I have a list of annotations (MKPointAnnotation). I have a UIViewController which is for the whole view, MKMapView implementing Controller, which I thought is useful for detecting the users ...
0
votes
1answer
58 views
Annotations don't appear when setting MainViewController as delegate of MKMapView
I have a funky problem I'm dealing with… i have a very basic mkmapview that i dragged into the mainviewcontrollers view. I have very basic annotations that i am showing on the map. When I make the ...
0
votes
1answer
54 views
mapView and UITable detail
trying to pass my annotation's data (name, address, phone #, url, description, etc) to a DetailViewController with a table. stuck----please read the code. the data isnt passed with ...
0
votes
1answer
170 views
Custom Annotation Callout not showing MKAnnotation?
So the default red annotations are showing in the Simulator absolutely fine, but the custom annotation MyPin wont show. I have a feeling this is something to do with the NSMutableArray?
If so I'm not ...
1
vote
0answers
110 views
Rotation issue using UIActivityViewController in a MapView
In my iOS app I have a Map View that I called mappa.
I just add a UIActivityViewController that appears when a callout is pressed from an annotation View.
I use this code to display it:
- ...
0
votes
4answers
269 views
Shows different Pin images in MKMapview
In my MKMap view I have customized the annotation pin with an image. But still some pins are static and not showing the given image.
I am using -(MKAnnotationView *)mapView:(MKMapView *)mapView ...
0
votes
2answers
112 views
Add Annotations on mkmapview and set mapview to the region where new annotations are added
I have a MKMapView having many MKAnnotations on it.
On a button click, another set of annotations are to be added.
Now on the button click, I have an array of annotations.I add the array of ...
5
votes
2answers
170 views
MKOverlay overlays everything with weird circumstances only on ios5?
I have a MKMapView that is having a very strange problem which is kind of hard to explain.
I have an MKOverlay that is saved between sessions by saving the points of the overlay to a file and loading ...
-1
votes
2answers
89 views
How to pass subtitle of annotation in MKMapView
In my map view I am showing the restaurants.On clicking the pins an annotation with title and subtitle will come.
On the annotation I have placed a button and by clicking that directing the user to ...
0
votes
1answer
19 views
When using MapKit, are MKAnnotations the model of MVC paradigm?
When using MapKit, are MKAnnotations the model of MVC paradigm?
I mean, let's say I have locations (for instance, cinemas) and those can be shown using a map and a list (table view).
What is the ...
2
votes
2answers
291 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 ...
1
vote
4answers
296 views
Display MKMapViewAnnotations within a map view's visible rect
I'm displaying an MKMapView inside a Path-style parallax table view header. To create the effect, the mapView bounds is larger than the area visible to the user. I need to set the map view region such ...
0
votes
1answer
45 views
Navigationcontroller don't work fine
I have (hopefully) a little issue. The rightCalloutAccessoryView button method. I try to push the navigationcontroller to another viewcontroller but it dont work fine. I always get a Black screen. the ...
0
votes
1answer
52 views
Making an app that uses a PickerView to drop pins
Me and a group of friends are creating an iPhone app for a project in our technology class. Our app is going to be used for navigation to different high school sporting event locations in our area. ...
1
vote
1answer
78 views
Pass Custom Property through MKAnnotation CalloutAccessoryControlTapped
I am trying to perform the simple function of passing a custom property (placeId) through MKAnnotation. I have set everything up with a custom class called "MapViewAnnotation."
I would like to ...
0
votes
2answers
78 views
Set ViewController Title from calloutAccessoryControlTapped
I am trying to simply set the title of a detailViewController to the title of a pin once the call out accessory control is tapped.
Here is where I set the MKAnnotation up:
- (MKAnnotationView ...
1
vote
2answers
98 views
Add a picture in a MKAnnotationView inside the title
I was searching for any lib that allows me to do this:
And the possibly to add a button in the right part in the title, also if possible adding more images in the subtitle or the button in the ...
1
vote
1answer
241 views
MKPinAnnotationView not working
I would like to have a MKMapView showing annotations with disclosure-buttons which lead to a view controller like the Golden Gate Bridge annotation in this Apple sample app.
I load the coordinates ...
0
votes
1answer
123 views
Render mapLines in MKMapView my map get frozen
Hi everyone I hope you can help me:
- (IBAction) addPoints: (id) sender
{
NSArray *latitudePoints;
NSArray *longitudePoints;
BOOL flag = NO;
@try
{
switch (lugar)
{
case 0:
break;
...
0
votes
0answers
120 views
How to add multiple annotations (with coordinates from NSMutableArray [closed]
I have a loop in which I tried to add annotations from array. But on map creating only one annotation with coordinates from last object. Here is my code:
for (NSDictionary *d in filtered ) {
...
0
votes
0answers
91 views
Showing view after selecting map annotation
I am trying to create custom map annotations on a map view with data from an array and also showing a UIView when selecting each map annotation (similar to callout). However, the UIView sometimes ...
1
vote
2answers
87 views
Annotations, Annotations, Annotations
So `MKAnnotation's. Fun stuff.
My questions:
What's the difference between an annotation's title and its subtitle and how does that affect the visual component of the annotation?
What's the ...
1
vote
1answer
114 views
Callout button crashes app - MapKit
UICalloutView willRemoveSubview:]: message sent to deallocated instance;
This only happens when I tap the callout button, but not on the first and not on the 2nd tap, but from the 3rd tap. So I ...
0
votes
2answers
149 views
Detect if user moved map or if it happened programatically iOS Mapkit
Ok so I have a map loaded with pins from a remote JSON feed which is loaded into the app. This all works fine.
Now from initial experimenting regionDidChangeAnimated gets called multiple times and so ...
0
votes
0answers
149 views
MKPointAnnotation was deallocated while key value observers
I am getting below error, while adding annotation
An instance 0x21fcadd0 of class MKPointAnnotation was deallocated while key value observers were still registered with it. Observation info was ...
0
votes
0answers
80 views
How to place a pin without overlapping when 2 annotation pin have same coordinates?
I'm currently working on displaying locations in MKMapView, but i don't know how to place 2 MKAnnotation pins in map when both has same coordinates. For example, if both has same location London, then ...












