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.
51
votes
9answers
34k views
How to customize the callout bubble for MKAnnotationView?
I'm currently working with the mapkit and am stuck.
I have a custom annotation view I am using, and I want to use the image property to display the point on the map with my own icon. I have this ...
22
votes
3answers
7k views
MKAnnotationView - Lock custom annotation view to pin on location updates
Update #5 I guess it's bounty time. 100+ views and no one's taken a stab, even with the code sample I've posted. How about some reputation points!
Update #4This is a pretty complicated question, so ...
27
votes
2answers
11k views
Customize the MKAnnotationView callout
I want to create a custom MKAnnotationView callout as shown in this image. I have tested several solutions but they only allow customization of the left/right images and title/subtitle. Can anybody ...
11
votes
4answers
12k views
Custom MKPinAnnotation callout bubble similar to default callout bubble
i want to create a custom callout bubble on MKMapView. But i want to create the call out bubble in the same manner of default bubble. So how to create a View look like annotaion in this image
I want ...
24
votes
5answers
14k views
How to search MKMapView with UISearchBar?
I have an application that needs to have a similar search feature like the Apple "Maps" application (included with iPhone, iPod Touch and iPad).
The feature in question should not be a hard thing to ...
4
votes
2answers
3k views
Restrict MKMapView scrolling
I'm trying to add a custom image to an MKMapView as an MKOverlayView - I need to restrict users from being able to scroll outside the bounds of the overlay. Are there any existing functions to do ...
0
votes
2answers
915 views
Annotation details after detail disclosure pressed?
I have a MKMapView annotation object that has a right callout accessory detail disclosure button. When the button is pressed I am using addTarget:action:forControlEvent to call a selector method which ...
5
votes
3answers
2k views
Store data in MKAnnotation?
So I'm pretty new to Xcode and Objective-C. I have several ArtPiece objects with various attributes stored in an array. I then add them as MKAnnotations to the mapview. What I need to be able to do is ...
4
votes
1answer
1k views
Custom Annotation view for userlocation not moving the mapview
Can we have custom annotation view for the users current location in iOS?
I need to remove the blue dot (with circles) with my own custom view (say some ping pin). Is it possible to do this?
If we ...
26
votes
1answer
18k views
How to add a push pin to a MKMapView(IOS) when touching?
I had to get the coordonate of a point where the user touch on a MKMapView.
I'm not working with the Interface Builder.
Can you give me one example or a link.
Thanks a lot
15
votes
2answers
9k views
How to capture Tap gesture on MKMapView
I am trying to capture tap event on my MKMapView, this way I can drop a MKPinAnnotation on the point where user tapped. Basically I have a map overlayed with MKOverlayViews (an overlay showing a ...
5
votes
2answers
2k views
UIModalTransitionStylePartialCurl with UITabBarController
This question has been asked a lot e.g. here but as far as I can see is yet to be answered in full.
I have a UITabBarController with a UINavigationController as the root vc for one of the tabs, which ...
11
votes
1answer
12k views
MKMapView: Instead of Annotation Pin, a custom view
I want to display an image in my MKMapView instead of little rock pin. Can someone please put some helpful code here, or tell the way how to do it?
Thanks!
EDIT
-(MKAnnotationView ...
47
votes
5answers
30k views
How do I zoom an MKMapView to the users current location without CLLocationManager?
With the MKMapView there's an option called "Show users current location" which will automatically show a users location on the map.
I'd like to move and zoom to this location when it's found (and if ...
15
votes
2answers
9k views
Getting the bounds of an MKMapvIew
In order to setup a query to an external server I want to get the bounds of the current Map View in an iPhone app I'm building. UIView should respond to bounds but it seems MKMapView doesn't. After ...
19
votes
3answers
3k views
Why am I crashing after MKMapView is freed if I'm no longer using it?
I have a MKMapView. Sometimes after my view controller is dismissed, I'll get a EXC_BAD_ACCESS.
I turned on NSSZombies and it looks like the MKMapView's delegate — my view controller! — is being ...
4
votes
5answers
7k views
Is there way to limit MKMapView maximum zoom level?
the question is - is there a way to limit maximum zoom level for MKMapView? Or is there a way to track when user zooms to the level where there's no map image available?
4
votes
3answers
12k views
How do I create an image overlay and add to MKMapView?
I am trying to learn MapKit and am now trying to add an image as an overlay to the map view.
I can't seem to find any sample code to help explain how to do this.
Can you guys please help me how to ...
7
votes
1answer
10k views
Customizing the MKAnnotation Callout bubble
I have a requirement in my application map page. I have to customize the Callout bubbles. I need to add an image, two labels and a button with specific height and width of each.
I have gone through ...
15
votes
6answers
5k views
MKMapView setRegion “snaps” to predefined zoom levels?
Can anyone confirm that setRegion "snaps" to predefined zoom levels and whether or not this behavior is as designed (although undocumented) or a known bug? Specifically, it appears that setRegion ...
8
votes
2answers
1k views
Draw text in circle overlay
I'm trying to draw some circle overlays containing text on MKMapView.
I have subclassed the MKCircleView, in which I put the following (based on this), but the text does not appear. The circles show ...
4
votes
2answers
5k views
Multiple annotation callouts displaying in MKMapView
Is it possible to open simultaneously more then one callout?
The code:
- (void)mapViewDidFinishLoadingMap:(MKMapView *)theMapView {
for (id<MKAnnotation> currentAnnotation in ...
2
votes
2answers
1k views
Is there away to add text using Paths Drawing
I have a map custom view that inherit from MKOverlayPathView. I need this custom view to display circle, line and text.
I already managed to draw circle and line using path drawing CGPathAddArc and ...
33
votes
0answers
13k views
Can I still use google maps in iOS 6 [closed]
As you may know apple yesterday announced iOS 6 and with it their own new maps.
I just ran my app on the new iOS and it uses as standard maps in MKMapView the new apple maps.
Which are probably ...
5
votes
3answers
6k views
How to get click event from a button added over MKAnnotationView
Anyone know if there's a way to get click event from a button that is added to MKAnnotationView, this button is used as label just to display the name of each pin on the map , now I successd to show a ...
5
votes
1answer
3k views
iPhone MKMapView - MKPolygon Issues
I am trying to plot a MKPolygon on a MKMapView in iOS 4.0. I have an NSArray which contains custom objects that include properties for latitude/longitude. I have a code sample below:
- ...
4
votes
2answers
864 views
MKMapView annotations changing/losing order?
I have a map view with annotations, and these annotations display a callout. When the callout's disclosure detail button is clicked, it segues into a new view.
My MKAnnotations are a custom class ...
2
votes
1answer
4k views
Adding a route to a MKMapView
I'm trying to add a routing feature to an app I'm working on. I found Craig Spitzkoff's article on how to draw lines on an MKMapView which works pretty good. But since I don't have the coordinates of ...
10
votes
4answers
38k views
HowTo initialise MKMapView with a given user location?
My app knows the current user position (CoreLocation.framework).
As soon as the user opens a new MapView his iPhone starts searching for the current position again.
Is it possible to skip that or to ...
10
votes
2answers
16k views
MKMapView Route/Directions
I found that the Google Maps API supports Directions through:
var map;
var directionsPanel;
var directions;
function initialize() {
map = new GMap2(document.getElementById("map_canvas"));
...
22
votes
7answers
3k views
iOS6 MKMapView using a ton of memory, to the point of crashing the app, anyone else notice this?
Has anyone else, who's using maps in their iOS 6 apps, noticing extremely high memory use to the point of receiving memory warnings over and over to the point of crashing the app?
I've ran the app ...
6
votes
2answers
3k views
Calculating tiles to display in a MapRect when “over-zoomed” beyond the overlay tile set
I am working on an app that uses MKOverlay views to layer my own custom maps on top of the Google base map. I have been using Apple's excellent TileMap sample code (from WWDC 2010) as a guide.
My ...
12
votes
2answers
4k views
iOS MKMapView zoom to show all markers
I'm working with MKMapView and have plotted several points on the map. I have used the MKCoordinateRegion and MKCoordinateSpan to enable zooming etc around one of the points - but that's not what I ...
11
votes
3answers
15k views
iPhone: Create MKAnnotation
Can I create an MKAnnotation, or is it read only? I have coordinates, but I am not finding it easy to manually create an MKAnnotation with using setCoordinate.
Ideas?
4
votes
3answers
5k views
How Can I get Direction on an iPhone iOS 6 App in Xcode from A to B?
I want to update an app from iOS < 6 that uses Google Maps. My app has a lot of pins on a map, and, when a user taps over one of them, the iPhone call Maps like a shared application to get ...
4
votes
2answers
2k views
Slight zoom on MKCoordinateRegion?
I am zooming an MKMapView to fit the bounding region of a collection of pins, however when the pins are displayed I have noticed that the zoom could ideally do with being a little tighter. My proposed ...
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
1answer
5k views
how to manage drag and drop for MKAnnotationView on IOS?
I'm working without InterfaceBuilder.
I've an instance of MKAnnotationView with setDraggable on YES,
In My MKMapView my annotation view is displayed and I can drag and drop it.
How can I execute an ...
1
vote
2answers
722 views
How can i get any information like lat,long when i touch on MKMapView in iPhone/iPad?
I have a mapView using xib file now when i touch in the mapview i want the latitude and longitude of that particular area so there any whey or any sample code which help me in this task.Thanks in ...
4
votes
2answers
2k views
How to make the union between two MKCoordinateRegion
I'm trying to do the union between two MKCoordinateRegion. Does anybody have an idea on how to do this?
Thanks in advance
1
vote
1answer
398 views
Annotation on the map problem
I am trying to create a map app where the user can tag a map with a photo, comment or video, but I am having a problem putting an annotation on the map.
My scenario is like this:
On the 1st page, ...
1
vote
2answers
3k views
Is the Current Location/Compass heading button available in the iOS sdk?
I am working on a sample map kit app for iOS. I have everything working and a toolbar button to toggle the MKUserTrackingMode. This may seem like a silly question but I have searched all the options ...
0
votes
1answer
169 views
How to go to second view controller after click on disclosure indicator button
I would like to remove existing annotation from mapview. Scenerio is to click on existing annotation callout part (disclosureindicator button) and it would lead user to another viewcontroller and ...
16
votes
7answers
4k views
How can I reduce the number of annotations on a map?
I'm coding a map view with around 900 annotations. Having this many annotations on a map make the performance suffer, so I'd like to reduce it to about 300 at a time. The annotations are representing ...
5
votes
3answers
9k views
How to set accuracy and distance filter when using MKMapView
When i use setShowsUserLocation with MKMapView to track user location, how do I set the accuracy and distance filter? I am not talking about CLLocationManager.
Thanks,
10
votes
2answers
5k views
(iPhone) how to implement draggable pins using OS 4.0 MapKit?
Can anyone provide any sample code/instructions for implementing draggable pins in OS 4.0 using the MapKit framework?
4
votes
4answers
10k views
How to display 2 lines of text for subtitle of MKAnnotation and change the image for the button on the right?
I am looking at Apple's MapCallouts example for map annotations and callouts (==bubbles that appear when you click on a pin).
Every annotation there has coordinates, title and subtitle.
I would like ...
4
votes
2answers
5k views
Search and display business locations on MKMapView
I'm trying to find a way to search for a business, such as "grocery stores" and display them on a google map around the users current location. This used to be pretty simple with the old URL style of ...
7
votes
2answers
582 views
Custom CallOut not displayed correctly in ios6?
As i want to implement the custom call out in the mkmapview i am using these classes CalloutMapAnnotationView.h and CalloutMapAnnotationView.m
I have extracted these classes from the following links
...
6
votes
3answers
5k views
Using MKAnnotationView without MKMapView?
I'm wondering if it's possible to use the MKAnnotationView inside a UIView other than MKMapView? I'm trying to find an alternative to using the undocumented UICalloutView class. I can create the ...




