MKMapView is part of Apple's Map Kit framework for developing location-aware iOS applications, and provides an embeddable map interface. Effective iOS 6, the Map Kit framework uses Apple's own map service. In iOS 5.1 and earlier, the framework uses the Google Mobile Maps service.

learn more… | top users | synonyms

2
votes
2answers
2k views

How to rotate MKMapView and keep the Annotation and the view don't rotate?

I am making an MKMapView that shows the user's current location. I want to rotate the map like the Google Maps App without rotating the annotations. Im using the following code -(void) ...
2
votes
4answers
6k views

iPhone SDK: Track users location using GPS

I have a few questions about CoreLocation and GPS. First, what method in core location is used to continually get the users current coordinates? And at what interval should these be retrieved? ...
1
vote
1answer
6k views

Showing an image inside map annotation

Using the code below, I'm able to show the title and subtitle, and I want to show an image inside it. Is that possible? If so, please help me out. MKPointAnnotation *aAnnotationPoint = ...
1
vote
3answers
8k views

Mapkit with multi annotation (callout), mapping the next view

Wanted some help with a problem with mapkit I am facing. Should be a silly problem or I have missed out something while going through the mapkit framework. Here is the senario. I am placing multiple ...
1
vote
2answers
3k views

Animating custom callout for MKAnnotationView in MKMapView with “pop in” effect

I finally managed to put together a custom callout UIView that gets shown when a MKAnnotationView is tapped. I did this by overriding - (void)setSelected:(BOOL)selected animated:(BOOL)animated; ...
1
vote
4answers
6k views

How to enable touchEvents (scroll and pan) in MKMapview below a custom UIView?

In a nutshell, I am trying to figure out how to scale the geometry (point, line, and polygon) implemented in a custom view (geometryView) on top of MKMapView (mapView). What I did was.. Create ...
11
votes
2answers
1k views

How to clear MKMapView cache?

I am trying load map region and MKMapView delegate methods are not being called on second or subsequent load. None of the delegate methods viz - (void)mapViewWillStartLoadingMap:(MKMapView *)mapView; ...
8
votes
1answer
14k views

How to dismissPopoverAnimated on iPad with UIPopoverController in MKMapView (SDK3.2)

I have a MKMapView (also a UIPopoverControllerDelegate) with Annotations. This MapView has, in the MKTestMapView.h file, a UIPopoverController* popoverController defined in the @interface and a ...
7
votes
2answers
2k views

How can I clear MKMapView's cache of map tiles?

I am working on an MKMapView based iPhone / iPad mapping app that overlays my own basic base map to provide for some limited functionality even when users are offline and can not reach Google's map ...
5
votes
1answer
1k views

MKOverlayView and touches

i have an custom MKOverlayView on my map and i would like to detect touches. However, i can't seem to get the overlay to respond. i was hoping it was going to be something as dumb as forgetting to set ...
4
votes
2answers
949 views

Annotation Image is replaced by RedPushPin when long press on annotation

I have created Custom Annotation with following: -(MKAnnotationView*)mapView:(MKMapView *)mapView viewForAnnotation:(id<MKAnnotation>)annotation { MKPinAnnotationView *view = nil; if ...
4
votes
1answer
2k views

General-Block 56, 1024, 8, 244, 24 Memory Leaks using UIWebView loadRequest

I'm getting memory leaks that i can't figure out through leaks, build/analyze or overall inspection how to repair. I have a very strong notion that it's due to the loadRequest command from my ...
3
votes
2answers
2k views

Touch events on MKMapView's overlays

In the app I'm currently designing I have a MKMapView with overlays on it (customized MKPolylines btw) and I would like to be able to detect touch events on these overlays and assign a specific action ...
3
votes
1answer
3k views

MKMapView -> display a button for my location

I have a MKMapView implemented with these lines of source code (my location is a blue bullet, the other one's are purple pins): - (MKAnnotationView *)mapView:(MKMapView *)mapViewLocal ...
3
votes
3answers
5k views

using a UIView as MKMapView subview to draw a route

Before anything i'm sorry for my bad english. I'm trying to draw a route in a UIView and set that view as a MKMapView. Now i have a UIView class (ViewClass) where i put all the touches methods and ...
2
votes
3answers
3k views

Resize MKAnnotationView Image When map zooms in and out?

What i have I have about 150 MKAnnotationViews on a map. Every MKAnnotationView has an image that replaces the default pin. What's happening now When the map zooms in, the MKAnnotationViews are ...
2
votes
2answers
2k views

I have 30 annotations, and growing. Looking for a simpler way to code this?

I am coding multiple annotations into a project. Currently I have 30 annotations, and growing. I'm wondering if there is a simplier way of having to create a annotation.h and annotation.m classes for ...
2
votes
3answers
7k views

MKMapView with custom MKAnnotation

I've a MKMapView. I want to put a custom MKAnnotation on my map. They are some restaurant places. How can I do it? My question is how can I make a custom MKAnnotation? Thanks, guys.
2
votes
3answers
2k views

Avoid flicker when moving annotations in a MKMapView on iPhone

As far as I know, there isn't a way to move an annotation without removing & readding it to the MapView (Maybe I"m wrong?). Is there a way to prevent the MapView from being redrawn between ...
2
votes
1answer
2k views

iPhone MapKit: select location (coordinates) manually by touching MKMapView

Hallo everyone. I would like to offer the user the possibility to (manually) select lat. and long. coordinates by touching a MKMapView. How can I achieve that? I've seen that the MKMapView delegate ...
1
vote
1answer
268 views

iOS 6 Map problems with MKUserTrackingModeFollowWithHeading

I'm trying to solve two problems with MKUserTrackingModeFollowWithHeading in iOS 6: MKUserTrackingModeFollowWithHeading works briefly, but it's jittery and returns to MKUserTrackingModeFollow ...
1
vote
1answer
3k views

Drop pin in center of the screen, MKMapView

I have a function that drop pin with this code: ParkPlaceMark *placemark=[[ParkPlaceMark alloc] initWithCoordinate:location]; [mapView addAnnotation:placemark]; How to put this pin on center of the ...
1
vote
1answer
2k views

Rotating only the MapView's content

I am trying to rotate a map view in my app according the the user's current route. (I don't like to use the built in compasse because only 3GS uses it and it suffers too much interference from other ...
0
votes
3answers
2k views

Tapping on MKAnnotationView doesn't call didSelectAnnotationView delegate

Take a look at this code and see if you can help me fixing it: - (void)viewDidLoad { //Initialize the array and add annotations for the location on the map annotations = [[NSMutableArray alloc] ...
0
votes
2answers
2k views

MKMap Annotations when clicked show a View controller instead of Popup box

Is it possible to display a View controller with further details of the Map annotation on a new view controller which when popped returns back to the MKMap view with the annotations still on it at ...
7
votes
3answers
4k views

How to draw a MKPolyline on a MapView?

I have an array of points to be drawn on a map, its already decoded: - (void) drawRoute:(NSArray *) path { NSInteger numberOfSteps = path.count; CLLocationCoordinate2D ...
6
votes
2answers
815 views

How can i integrate Radar Overlay on MapView?

I want to Integrate Weather radar on my MapView.Please anyone help on doing this task.I have done so many googling but not get succeed.Please check this image i wanted to do like this.
5
votes
2answers
598 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 ...
5
votes
1answer
1k views

MKMapView Not Calling regionDidChangeAnimated on Pan

I have an app with a MKMapView and code that is called each time the map changes locations (in regionDidChangeAnimated). When the app initially loads, regionDidChangeAnimated is called on pans ...
5
votes
1answer
3k views

How to draw a line on MKMapView showing the route a user has taken?

I have had a look around online to try and find out the best way to draw a line showing the route a user has travelled. I think I need to use the MKOverlayView, and I guess I need to collect a ...
5
votes
3answers
3k views

didAddAnnotationViews not working on MKMapView

I've been playing around with the MKMapView and trying get my head around how the MKMapViewDelegate system works. So far I have no luck in getting the didAddAnnotationViews to get called when the ...
4
votes
1answer
482 views

Performance issues with MapKit on iOS6

After updating to iOS 6 I have noticed sever performance decreases when panning or zooming a MKMapView with multiple overlays. An app I created has approximately 600 polygon overlays of various ...
4
votes
1answer
849 views

iphone app: Questions on interaction between CLLocationmanager and MKMapView (showing current user location)

In my iPhone app, I have the following logic: Start CLLocationManger (the user can supply accuracy and distance filters parameters to locationmanager, since best accuracy is not required in my case, ...
4
votes
1answer
3k views

iPhone SDK: Convert MKMapPoint to CGPoint

I have converted a longitude and latitude on my MapView to a MKMapPoint. I then want to move an imageView to that point using the imageViews center property. It seems that I somehow need to convert ...
3
votes
1answer
2k views

IOS: Adding image to custom MKAnnotationview

I want to add a custom image to my annotations in the map. And i have made the following custom MapAnnotationView: #import <UIKit/UIKit.h> #import <Foundation/Foundation.h> #import ...
3
votes
3answers
3k views

iOS - MKMapView place annotation by using address instead of lat / long

I am able to place annotations on my MKMapView by using latitude and longitude, however, my feed coming in that I need to use location for is using street addresses instead of Lat and Long. e.g 1234 ...
3
votes
3answers
4k views

showsUserLocation returns pin instead of blue dot in iPhone simulator

This is my -mapView:viewForAnnotation method which drops pins when i create annotation views. But when i set mapView.showsUserLocation = YES; in -viewDidLoad, i get a pin dropped on Infinite Loop ...
2
votes
1answer
98 views

Adding a subview like UISlider or UIButtom in Google Maps in iPhone

I am new to iOS Programming and have very little knowledge about COCOA Touch. I am trying to add a button on the screen at the bottom over Google maps for giving an option to the user to go back to ...
2
votes
1answer
116 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 ...
2
votes
1answer
174 views

How to bring UIBezierPath to the back of a MKAnnotation object?

In my app, user draws a shape on map and using UIBeizerPath i am drawing that path. Then based on the coordinates of the path i am displaying the results which are only in that area. Everything works ...
2
votes
1answer
181 views

How do you move the legal sign in mapview

I wonder if anyone know how you move the legal sign on a mapview, right now my toolbar is covering it. Does anyone know how? There is lot's of help with the google logo but nothing on the apple maps. ...
2
votes
2answers
2k views

iOS 6 maps- not animating PIN drop

I have created a custom MKAnnotation class and it has been working - until iOS 6 came out. Since then my pins get added to the apple map but now without a drop animation! Is this how it is set or ...
2
votes
2answers
708 views

Re-adding annotations on map view to update their title

As you can see below, I have simulated my problem in a basic way. I have a timer that calls a method periodically. In that method, I have created a switch-case condition to simulate my idea. Once ...
2
votes
1answer
2k views

How to add annotation on center of map view in iPhone?

I have MAP view in my app and i want to add Annotation pin (Red pin) on center of map view. Now when user scroll map view pin should adjust with center according to that. How to do that? Thank
2
votes
2answers
2k views

mapView not zooming on second try using didUpdateUserLocation

i am loading a mapviewcontroller when the view map button is pressed from my mainviewcontroller: - (IBAction)mapButton:(id)sender { MapKitDisplayViewController *mapKitDisplayView = ...
2
votes
1answer
675 views

MKMapView crash

I could not figure out when exactly crash, because sometimes it happens and most time not. It crash when added new annotation and the pin has dropped down, or when the pin location has changed(drag). ...
2
votes
1answer
2k views

Change MKMapType in MKMapView and keep custom pinImage for annotations

I have set a custom pinImage for my annotations and when I change the type toMKMapTypeHybrid it reverts the pinImage setting to the standard pins. I'm setting the mapType in my viewWillAppear method ...
2
votes
2answers
912 views

iPhone MKMapView: Detecting Nearest Locations in Array from Current Location

I have an Array with approximately 1,000 Objects, each of which has a precise coordinate value. What I would like to do is take a Search button that I have and, when pressed, detect the current ...
2
votes
1answer
434 views

How to recenter map in iPhone app on zoom in/out using MKMapView

I am developing an iPhone application in which I need to show an image at a specific Latitude & Longitude on a Map. The requirement is - Even if the user zooms in or out on this map screen, the ...
1
vote
1answer
483 views

Use GOOGLE maps in iOS supporting iOS 6 and also iOS 5

I am in a need of having maps support for an app, but the concern is prior to ios 6 the iOS mapKit uses the google maps which is rich in content, but in iOS 6 its using its own maps which is not that ...

1 2 3 4 5 7