1
vote
2answers
26 views

MKMapView - cant locate user location while AirPlane mode is on

I'm developing with MKMapView class, When running on the device (iPhone5) and with AirPlane mode ON , Wi-Fi ON, and the property of MKMapView:showsUserLocationsetting to YES,the delegate of MKMapView ...
0
votes
1answer
92 views

Add a subview to MKMapView (not an overlay)

I want to add a small subview at tap point on an iOS map view in such a way that added subview also zooms and scrolls when I scroll and zoom the map view. Any help? The code I have tried is below: - ...
0
votes
1answer
57 views

MKMapViewDelegate is called but Pin does not drop as I set

I try to make a pin annotation to drop in MapView . But it doesn't . The view controller has one table view and I plug mapView into the header. DetailViewController - (void)viewDidLoad { ...
0
votes
0answers
147 views

iOS MKMapView direction arrows

I know Google Maps API v3 support to draw direction arrows over a polyline, nativelty (as of July 2012), but How could i do that in iOS MKMapView? Im creating polylines between points, and I would ...
0
votes
2answers
129 views

viewForAnnotation method never called

I have implemented my MKMapViewDelegate, but for some reason my viewForAnnotation method is never called. I can confirm that annotations are displayed on the MapView. I've added an NSLog() to my ...
0
votes
1answer
36 views

How do I trap an event when the user taps the map with MKMapViewDelegate [duplicate]

Possible Duplicate: How can i get any information like lat,long when i touch on MKMapView in iPhone/iPad? With MKMapViewDelegate, how do I get notified when the user touches a point in the ...
1
vote
1answer
291 views

MKMapView setRegion: animated: crashes the app (edited)

I have a MKMapView that expands (vertically) on tap (using UITapGestureRecognizer) and fires off an api call on pan (using UIPanGestureRecoginizer). Everything was working fine, until some time back, ...
0
votes
1answer
204 views

Detecting panning + decelerate of MKMapView

I'm trying to capture panning and the 'end of scrolling' on an MKMapView. Panning is easy to do with a gesture recognizer. However, MKMapView doesn't seem to implement a UIScrollViewDelegate in iOS 6. ...
1
vote
1answer
1k views

didUpdateUserLocation not called when view for userLocation is custom

I have an MKMapView that's supposed to track the user's location using a custom view (not the blue dot). In order to substitute this view for the blue dot, I return it thusly: - (MKAnnotationView ...
1
vote
2answers
138 views

MKMapView doesn't scroll and doesn't not zoom

I have a MapView and marked where the user's location and nearby there are other annotationView of various types regarding tourist attractions. I want the MapView is scrollable and zoomable to see all ...
0
votes
1answer
237 views

ios6 visibleMapRect not correct

I have an app that on startup centers on a specific location. //Calculate and set new center point CLLocationCoordinate2D zoomLocation = CLLocationCoordinate2DMake(<some lat>,<some ...
6
votes
1answer
298 views

mapViewDidFinishLoadingMap: called too early

My problem is simple: I'm waiting to take a screenshot of an MKMapView, and I want to do it only once the map is loaded. Unfortunately, this delegate method is almost always called before the map is ...
2
votes
1answer
935 views

MKMapView Clicking on pins won't call didSelectAnnotationView

I am using a mapView and am trying to make a callout pop up when you click on a pin which is shown on the map. The pins manage to be placed in the proper locations so I think the annotations work ...
5
votes
2answers
661 views

Detecting when MapView tiles are displayed

Since - (void)mapViewDidFinishLoadingMap:(MKMapView *)mapView is not called when the tiles are loaded from cache, is there a way to know when all the tiles have been loaded (either from cache or from ...
0
votes
1answer
142 views

MKMapViewDelegate is nota called when inside a subclass of MKMapView

I am quite new in Objective C, but learning fast. My project is quite complete and I have implemented as well classes than delegates etc etc. I am using an MKMapView to display things on a map. I ...
0
votes
1answer
121 views

Cannot push a new view when clicking on annotation view

In my iphone app, I have a controller with a view and MKMapView. I display several annotation on the map, but when I click on the annotation view the "calloutAccessoryControlTapped" is triggered but ...
1
vote
2answers
702 views

viewforoverlay never gets called

This is driving me nuts. I've been through all the posts on stackoveflow, but nothing fits the bill. I am trying to add a simple polyline (i.e. not a custom overlay) as an overlay to my MKMapView. ...
7
votes
2answers
415 views

Smooth Movement of annotation image on Mapview

I have loaded the custom annotation image for user current location.I am updating the current user location after every 1 sec in background. NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] ...
5
votes
3answers
2k views

Is this a bug with MKMapKitDelegate mapView:didUpdateUserLocation?

I've created a test application with only one view containing an MKMapView and a controller which acts as the MapView's delegate. When I do a fresh build (removed from the device completely before ...
2
votes
2answers
364 views

How to suppress the “Current Location” callout in map view

Tapping the pulsating blue circle representing the userLocation brings up a "Current Location" callout. Is there a way to suppress that?
1
vote
1answer
898 views

Is there a way to set z-order in the annotation view layer?

I want to have some annotationView images appear on top of the others so they are easier to see. Is there a way to set the order? I thought I would try something like [theMap ...
1
vote
3answers
2k views

MKMapViewDelegate mapView:didUpdateUserLocation: method not called on iOS5

MKMapViewDelegate mapView:didUpdateUserLocation: method is not called when running on the 5.0 simulator, even if all location permissions are given in the device settings. With 4.3 it's working fine. ...
0
votes
1answer
203 views

Map view refresh in iPhone app

I am using map functionality in my iphone app. I m showing stores for users current location on map. Whenever user scrolls the map he needs to be shown stores of new location. eg. suppose user at New ...
0
votes
1answer
395 views

iOS MKMapViewDelegate - Getting UserLocation the second time

I create a MKMapView and associate a MKMapViewDelegate with it. The MKMapViewDelegate gets notified correctly that DidUpdateUserLocation and other life cycle events occurred. When I create another ...
5
votes
3answers
2k views

MKMapView crashes app when view controller popped

I have a view controller with an MKMapView that calls [self.mapView setRegion:region animated:YES]; which repositions the map from A to B. The view controller which holds the MKMapView is set as ...
2
votes
2answers
2k views

mapView:didDeselectAnnotationView: delegate method getting called before the annotation view is actually deselected

I am working with a map view populated with custom pins. When the user taps somewhere on the map to deselect a pin, I want to implement the map such that the pin does not become deselected (i.e. ...
0
votes
1answer
378 views

mapview blue dot not coming for second time

I'm developing an app to show the stores available in a particular zipcode. I start with the current location. I'm getting a blue pulsating dot for my current location. when I enter a zipcode I'm able ...
0
votes
1answer
511 views

Displaying TableView when MKAnnotation(Pin) in MKMapView touched/pressed/clicked

I want to display quite a bit of demographic data for a certain pin when someone touches on it, so providing a pop-up isn't going to cut it. I figured once the pin is touched I will just stick a ...
1
vote
1answer
466 views

iOS MKMapKit regionDidChangeAnimated

I would like to determine the minimum + maximum visible latitude and longitude values in the MKMapViewDelegate delegate method: - (void)mapView:(MKMapView *)mapView ...