MapKit is Apple's framework for presenting and annotating scrollable and zoom-enabled maps on iOS devices.
0
votes
1answer
12 views
MKPolygon with holes
I searched over the internet but I couldn't find an answer to this. It is possible to draw a hole in a MKPolygon? Something like this:
I remember I saw something like this, but I'm not sure if it ...
0
votes
0answers
8 views
Does MKOverlayPathView need drawMapRect?
I'm having some inconsistencies modifying the Breadcrumb example, to have the CrumbPathView subclassed from MKOverlayPathView (like it's supposed to) rather than subclassed from MKOverlayView.
...
0
votes
1answer
35 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
0answers
21 views
Using MKPolyLineOverlays and MKAnnotation efficiently
I am creating a map application, in which I am showing MKPolylineView(around 2000) and MKAnnotations with pin drop.
I want to make visible either set of MKPolylineViews or MKannotations at a time. I ...
0
votes
0answers
31 views
MapKit works on simulator but not on device
When I call my map view controller on a device, the app just gets stuck, nothing happens, XCode doesn't even throw an error.
But the same code works just fine on the simulator. My code for presenting ...
0
votes
0answers
20 views
Obtaining MKAnnotation's coordinate while dragging
I'm creating a path (MKPolyline) based on the position of annotations added by the user. I want to allow the users to change the path by dragging the pins. I currently can do that, but the MKPolyline ...
-1
votes
1answer
24 views
using saved GPS coordinates from CLLocation to plot on the iPhone map
I have been using core data to save the user's location for various times in a table view. Now that I can actually get the location details (coordinates mainly) at various times, I would like to plot ...
1
vote
1answer
38 views
crash on setUserTrackingMode with MKMapView when zoomed in
I have MKMapView with MKUserTrackingModeFollowWithHeading.
But something changes the userTrackingMode to MKUserTrackingModeFollow or None,
so I implemented,
- (void)mapView:(MKMapView *)mapView ...
0
votes
1answer
27 views
Cannot display MKPolyline on the map
I'm fighting the hell with theses freaking polylines…
I still can't display it on my map !
I implemented :
NSArray *points = [NSArray arrayWithObjects:
[[CLLocation alloc] ...
0
votes
3answers
31 views
Is it possible to load a library before linking based on iOS version?
I have an application which is supposed to use google maps and mapkit framework. Now, google maps are only supported on iOS version 5.1 and further whereas Mapkit framework is supported on lower ...
0
votes
0answers
13 views
Custom Image of pin reverts to default image on mapview on longpress
As i m doing the mapkit,I am successful in changing the default image of pin to the custom image using the MKPinAnnotationView.I am using the MKPinAnnotationView instead of MKAnnotatiionView because ...
0
votes
0answers
15 views
How can I create and apply a map layer with MapKit?
I am new to coding, and I am creating an application that requires me to add line on to roads, essentially a map layer. Also I would like to know how to add the map layer to the MapKit in Xcode. ...
0
votes
0answers
17 views
Custom MKOverlayView being clipped due to small MKMapRect
I'm implementing a custom MKOverlayView. Everything seems to be going fine until I zoom in on my overlay.
What I've found is that the mapRect given to me in - (void)drawMapRect:(MKMapRect)mapRect ...
0
votes
2answers
51 views
Getting routes and turn-by-turn navigation in an iPhone app
I'm developing an app that will focus heavily on giving users routes and turn-by-turn directions while driving. It is important that they stay within the app during their drive, so I really don't want ...
1
vote
1answer
29 views
MapKit with UISearchBar
So if I understand correctly you can no longer use certain Google APIs with iOS (ex. Google Places). So how can we use the iOS MapKit with a UISearchBar to search for locations? The map on my iPhone ...
1
vote
2answers
44 views
How to add annotations to MKMapView asyncronously?
I have alot of annotations to be added to a mkmapview. When i add the annotations, the app freezes for a short period of time. I have understand that the main thread is the only thread allowed to add ...
1
vote
0answers
50 views
MapKit changes annotation view order when map is scrolled in XCode 4.6
I am an experienced iOS developer, but this has really stumped me. I am simultaneously submitting a problem report to Apple.
I'm adding annotations to a MKMapKit map (Xcode 4.6). Each annotation is ...
0
votes
1answer
49 views
My viewForAnnotation function is never called?
I have made these pieces of code for my custom annotation:
- (void)viewDidLoad
{
[super viewDidLoad];
mapView.delegate=self;
[self AddLocations];
[self initiateMap];
......
...
0
votes
1answer
45 views
Adding holes in a giant overylay at MapKit
I have a solution for adding overlay circles in the MapKit. However, I want to know if is it possible to remove circles from an overlay instead of adding circles' overlays.
Imagine a map with a red ...
0
votes
1answer
26 views
Map reverting to user's location, not allowing 'browse' iOS
The map screen of the app displays the user's current location. I want to allow the user to 'browse' the map (scroll around and explore other areas) and I have a button which returns the user to the ...
0
votes
1answer
14 views
Is there a proper way to set the region of MKUserTrackingModeFollow?
In my code, I'm calling
- (IBAction)goToUserLocation:(id)sender {
[mapView setUserTrackingMode:MKUserTrackingModeFollow animated:YES];
}
which then has this callback
- (MKAnnotationView ...
2
votes
3answers
56 views
MKMapview annotation dynamic pin image changes after zooming
I am working on a little project that shows 7 different types of annotations on the map. My annotations are taken from a url result in array and I parse it using JSON. I have lots of annotations and ...
0
votes
1answer
21 views
How do I make an iOS Map app use closest city as database parameter?
I have an app that fetches all data from the db and plots it on a map. Currently it plots everything in my city. So upon opening, it centers around my device location and plots all locations in the ...
-1
votes
0answers
20 views
What is the code to set a visible region in MapKit (ios 6)?
I've tried a lot of codes and none work.
I also used the code in tutorial of raywenderlich.
- (void)viewWillAppear:(BOOL)animated {
CLLocationCoordinate2D zoomLocation;
zoomLocation.latitude = ...
0
votes
0answers
32 views
MKMapView setRegion to Small Area causes Failed Satellite Image Loading
I have been working on the same app for a number of months, and this is a new problem. I am wondering if there has been a change in the server side of the Apple Map data. Here's the issue:
My app (at ...
1
vote
1answer
47 views
How overlay a circle on an iOS map
I've got a radius and a location.
This is how I'm trying to get the bounding rectangle of the circle.
- (MKMapRect)boundingMapRect{
CLLocationCoordinate2D tmp;
MKCoordinateSpan radiusSpan = ...
1
vote
0answers
46 views
setUserTrackingMode display issue sometimes occuring
I have a weird issue with the call of the method of MKMapView :
- (void)setUserTrackingMode:(MKUserTrackingMode)mode animated:(BOOL)animated
Concerning the displaying of my current location.
My map ...
0
votes
2answers
33 views
Trouble to dismiss MapKit iOS6
I use this code to create driving mode directions in iOS6:
Class itemClass = [MKMapItem class];
if (itemClass && [itemClass ...
0
votes
3answers
18 views
Check if an MKAnnotation is selected on a map?
I have a really simple question: how can I check if an MKAnnotation is selected on a map?
I can't see a selected like (GET) property.
I hope the solution would not be by triggering ...
0
votes
1answer
38 views
MKMapView setRegion not exact
Starting Situation
iOS6, Apple Maps. I have two annotations on a MKMapView. The coordinates of the two annotations have the same values for the latitude component, but different longitudes.
What I ...
0
votes
1answer
53 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
1answer
44 views
Finding Bounding Box from CLLocationCoordinate2D
I am working with an API that allows me to specify a "bounding box" of coordinate which allows me to only return results within that box:
Returns a list of geocaches inside the specified bounding ...
0
votes
2answers
81 views
Multiple Annotations ( MKAnnotationView ) in the same location Coordinates
Hi I am trying to implement Annotations grouping and animation if the user touch.
I did look a the different cluster Library solution but this wont work for my because I have multiple Annotations in ...
1
vote
1answer
25 views
How to know a location ( like : (CLLocation *)newLocation)) whether on the road?
I was doing a map ios app using CLLocation and I was wondering whether there is an API for judging whether a point on the map is on the road, but not in an appartment or in anywhere in-side the house?
...
1
vote
1answer
54 views
CLLocationCoordinate2D distance between two points considering zoom level
I'm trying to create a solid clustering mechanism using a subclass of an MKMapView. I came across a task that have I've been banging my head against the wall for quite some time now - grouping ...
0
votes
1answer
38 views
MapkIt coordinates being changed [closed]
Trying to plot things on a mapkit map but my lat and lng being passed in is being changed?
I pass in a lat of 39.34343 and it gets changed to 7.33121668909306e-304?
What am I doing wrong?
...
0
votes
1answer
83 views
iOS Mapkit - Annotations disappear on map scroll/zoom
On initial load, the annotations show just fine. But if I scroll the map, they all disappear and the code is only called for the user location, not the other annotations in the viewForAnnotation ...
0
votes
3answers
117 views
iOS - Mapkit keeps animating user location whenever map view changes (scrolled, zoomed)
I am displaying a user's location on the map using CLLocationManager's coordinates. Everytime I move or zoom the map, the user location pin (blue pin with sonar effect) keeps disappearing and then ...
0
votes
2answers
37 views
Remove a specific annotation from mapview
In my mapview I am creating pins like cafe, bar, night_club, and restaurant. How can I code to remove only the a specific point, cafe for example. I have used the code below to successfully remove ...
1
vote
1answer
80 views
iOS MapKit - Creating a line between two points by keeping in view the spherical trajectory of Earth?
http://i40.tinypic.com/33uesl2.png
Hi, I need something like the above (please check link) to do in iOS MapKit. The above screeshot is from google maps. I am currently drawing line between the two ...
0
votes
1answer
73 views
How to transform an NSArray of lat/long coordinates w/format: “(”99.9999“,”99.9999“)” into an NSArray of valid CLLocation to use in an MKOverlay?
I'm trying to parse an array of NSStrings with lat/long coordinates("99.999999","99.999999") and then transform it into an array of CLLocations.
Is there a NSString method that would help with this?
...
0
votes
2answers
60 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
0answers
38 views
EXC_BAD_ACCESS using Mapkit
I have a map view controller here that is crashing after a while (did happen instanty once). When I pressed the button to track the map after my location after moving the map away it crashed. The ...
1
vote
2answers
63 views
iOS Map Kit Locations read from database
I have been tasked with creating an iPhone application for a client.
I have some coding experience but only in C# so it doesn't really help here but other than that I am a complete novice on iPhone ...
0
votes
0answers
19 views
Tabs View Controller initialisation at startup (iOS)
I'm trying to create an iOS App using a "tab based application".
Inside one of those tabs, I have a Mapkit map (on the second tab).
When I click on this second tab, I have my MapKit Map well ...
0
votes
3answers
60 views
How to display a MKMapView without street names?
I need to display a map without street names. is it possible using MKMapView ? if not, is there a different map API for iOs that supports this?
thanks,
Nimrod
0
votes
1answer
115 views
xcode - viewForAnnotation slow (over 3k Annotations) … normal?
Hy Guys!
I have about 3-4k Annotations in my MySQL, receive them via assynchronous request... only showing the Annotations is ok, but i want that the user can select a highlighted Annotation to go to ...
0
votes
2answers
54 views
How to know whether MKMapView visibleMapRect contains a Coordinate?
If I have a MKMapView and a CLLocationCoordinate2D how do you test whether the map's visible area contains the coordinate?
0
votes
0answers
24 views
Is it mapkit leak is apple issue?
I'm testing my app and sometimes I got a leak when use a mapkit.
But I already release all of instances of mapkit, location manager, delegates and everything related with this components.
But I ...
0
votes
1answer
110 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 ...





