MapKit is Apple's framework for presenting and annotating scrollable and zoom-enabled maps on iOS devices.
1
vote
0answers
5 views
IOS SDK + Turn images of route
I am getting route from IOS SDK but now i want to get Turn by turn images as attached.
Is there any way to get this kind of images? or need static images from my app bundle?
Thanks
2
votes
1answer
13 views
IOS SDK 7.0 + MKDirections + calculateDirectionsWithCompletionHandler
i am working on demo app of MapKit updates in IOS SDK 7.0.
I am trying to find route b/w two places via IOS SDK 7.0. As if you know, apple allow to get direction within app and not need to use ...
0
votes
1answer
17 views
iOS: smart refreshing of annotations
Whenever I move my map in my application I download new annotations(or coordinates rather) from a webserver, appropriate for the maps state.
I do not want to download already downloaded annotations ...
2
votes
0answers
21 views
MKOverlayView to be rotated around an anchor point
I have an overlay of route to be placed over a map. I have to adjust its rotation so that it overlaps exactly with the underlying map view. How can I achieve this? I have found the anchor point as ...
0
votes
2answers
25 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
35 views
iOS : MapKit place an annotation relative to the map, and not the bounds of the screen
I am writing an application with a mapview inside.
I download coordinates for some annotations from my server via a HTTP request.
I am supposed to decode the JsonResponse and add the annotations to ...
0
votes
2answers
22 views
Break up MKMap into tiles — tiles too small
I am working on an overlay for MKMapView using MKOverlay and MKOverlayView. To start things I just want to divide the world into tiles depending on the current zoom level. So when I am zoomed out I ...
0
votes
0answers
20 views
iPhone 5 6.1.4 Maps vs iPod Touch 6.1.3 Maps
I'm having some really strange behavior with using Maps in my application... I've implemented a map that takes up a small portion at the top of the screen and, at the bottom of the screen, have ...
0
votes
1answer
24 views
regionDidChange called several times on app load
I have noticed that as the app is first loaded the regionDidChange method is called a couple times before loading the map (or as the map is loading)
In order to avoid this behaviour, I had to use the ...
0
votes
0answers
29 views
removeAnnotations doesn't trigger viewForAnnotation
I have a map that displays loads of annotations
and I have a button on the map to cluster the annotations
when I click on the button, the clustering algo basically does the following
select a ...
1
vote
1answer
56 views
Apple route points or google route points on apple maps
It is against the policy of Google maps to show GOOGLE Route on any other maps except Google maps.I am using apple maps and i want to show route between two points. Lets say current location and some ...
0
votes
0answers
15 views
how can I display alert when user is nearby annotation?
I am trying to display an alert when user is nearby annotation
I have multiple annotation.
Thanks.
0
votes
0answers
31 views
Rendering images to scale using OpenGL on top of MKMapView
I've got an OpenGL view layered on top of of a MKMapView so that I can render advanced textures and polygons on top of a map efficiently. I need to use OpenGL because CoreAnimation (ie using ...
1
vote
0answers
24 views
MapKit opens focused on wrong place
I have the following issue: I have anotations within my mapkit however when I first open the map it doesn't go to the predefined location. It does however do it on the second time it is opened. Is ...
0
votes
2answers
35 views
When should I stop updating location manager?
I have an app that makes a call to get the user's location:
-(void)getLocation{
locationManager = [[CLLocationManager alloc] init];
locationManager.delegate = self;
...