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

0
votes
1answer
6k views

drawing routes on MKMapView [duplicate]

Possible Duplicate: Adding a route to a MKMapView So I am planning to draw multiple routes on the MKMapView. What are the easiest way to do this on iOS? I am not sure if the iPhone can ...
0
votes
1answer
7k views

MKMapView moving Annotations Automatically - animate them?

I have a data set of annotations that can update very quickly. At the moment I remove all annotations before replotting them back onto the map. NSArray *existingpoints = [mapView.annotations ...
12
votes
4answers
2k views

MKMapView regionDidChangeAnimated not always called!

This is frustrating me!!! It will be called most of the time but then it stops responding to the pinches. It will be called on a screen rotate and a double tap. Not to a pinch! Help!
4
votes
1answer
2k views

Moving MKCircle in MKMapView

when I try to move MKCircle in my MKMapView I get this error message: -[MKCircle setCoordinate:] unrecognized selector ... But according to the documentation MKCircle conforms to MKAnnotation protocol ...
3
votes
1answer
661 views

Black and white overlay for an MKMapView

I have an MKMapView and am adding an overlay (MKOverlay) to it. I would like the overlay to make the map view underneath to appear black & white (i.e. monochrome). Is there any way of doing ...
4
votes
1answer
2k views

How to display multiple callouts from MKAnnotationView?

I like implement sth. like this. I have two annotations with callouts, but MKMapView allows only one to be selected at the same time. [mapView selectAnnotation:self.firstAnnotation animated:FALSE]; ...
3
votes
2answers
392 views

KMLViewer Apple's example not working

I've been searching for quite sometime an answer to my problem with no success. So here it goes... KMLViewer, Apple's example is not working in some cases. After executing the README steps, i've ...
2
votes
2answers
5k views

Issue with Map Annotation and MKMapView in iOS 4.2?

I have a map view with pins that when the user selects a pin it goes to a detail screen for that pin. I also have a table view that when the user selects an item it goes to the same type detail view. ...
1
vote
1answer
3k views

MKPinAnnotationView custom Image is replaced by pin with animating drop

I'm displaying user avatar images on a MapView. The avatars appear to be working if they are rendered without animation, however I'd like to animate their drop. If I set pinView.animatesDrop to true, ...
1
vote
4answers
1k views

making map coordinates(lan,& long)storing in sqlite database

how to created an application that records a series of longitude and latitude values in a SQLite database and display them as a coloured track on a MapActivity. I need help. How can store the map ...
0
votes
1answer
678 views

change UIImage from MKAnnotation in the MKMapView

I have a mapView with only on MKAnnotation, that has a costume image. When the user changes the mapType, I need to change the image of that annotation. The way I did that was to remove the annotation ...
0
votes
2answers
3k views

Can we have multiple lines in subtitle of annotation in mapkit

I want to display an address, phone number and website in the subtitle of MapKit's MKAnnotationView (MKMapView). I tried to append \n in between the annotation title but this is not working.
-1
votes
1answer
498 views

MkMapView rame et fuite mémoire apple

Bonjour, Je suis en train de réaliser une application ayant une MkMapView. Cette dernière pose problème, soit elle rame soit elle a des fuites mémoire qui ne sont pas du à mon code (alors pour ...
9
votes
2answers
1k views

New foursquare venue detail map

I really love the way foursquare designed venue detail view. Especially the map with venue location in the "header" of view ... How was it done? Details are obviously some uiscrollview (maybe ...
17
votes
5answers
17k views

How to remove all annotations from MKMapView without removing the blue dot?

I would like to remove all annotations from my mapview without the blue dot of my position. When I call: [mapView removeAnnotations:mapView.annotations]; all annotations are removed. In which way ...
8
votes
3answers
16k views

Zoom in a MKMapView programmatically

I'm using a MKMapView inside an iPhone app. When I click a buttom the zoom level must increase. This is my first approach: MKCoordinateRegion zoomIn = mapView.region; zoomIn.span.latitudeDelta *= ...
11
votes
2answers
1k views

How can I group MKAnnotations automatically regarding zoom level?

if the user zooms out on a MKMapView, i want MKAnnotations which are near to each other automatically grouped into one "group" annotation. if the user zooms back in, the "group" annotation should be ...
4
votes
2answers
1k views

Optimizing Code for MKMapView - Large Number of Annotations

I have a modal view in my app which displays a UIMapView. I then add a large number of annotations (over 800) to this map view (code below). The problem is that the user is forced to wait a minute or ...
8
votes
3answers
9k views

iPhone MKMapView: set map region to show all pins on map

I'm trying to set the map region (center and span) so that the map shows all pin-annotations at the same time. I'm having trouble converting the long/lat coordinates from NSString to double, resp. ...
8
votes
5answers
5k views

Best Geocoding Service for iPhone Developers

I have made an app that gets an array of addresses from a web service and I want to map them. I know Apple left this out in MapKit, including only a reverse Geocoder. I was wondering what the best way ...
5
votes
3answers
13k views

How do I drop a pin with MapKit?

I would like to allow the user of my app to pick a location in the map. The native map has a "drop pin" feature where you can locate something by dropping a pin. How can I do this in MapKit?
1
vote
1answer
4k views

Create overlay from user interaction on MKMapView?

I have two questions, How to create an overlay on a MKMapkitView from user's touch down events? i.e. To keep it simple, the user touches down and it creates a MKCircle overlay How does the Maps ...
7
votes
3answers
12k views

MKMapView: Get clicked event on annotation pin

I am using an MKMapView containing a couple of MKAnnotation pins. Above the map I am showing a UITable with detailed information of the MKAnnotation pins. My problem: When I select a pin, I would ...
5
votes
1answer
6k views

MKPinannotation detail disclosure button - present new view

FirstViewController.h #import <UIKit/UIKit.h> #import <MapKit/MapKit.h> @interface TransparentToolbar : UIToolbar{ } @end @interface AddressAnnotation : NSObject <MKAnnotation> { ...
13
votes
1answer
3k views

UIPanGestureRecognizer on MKMapView?

I would like to add some logic when user moves with map view i. e. he does a pan touch. But when I add the gesture recognizer and I want to log the touch, nothing happens. When I try it in another ...
10
votes
1answer
4k views

MKMapView and CLLocationManager

I want to use a MKMapView to display the user current location using the default breathing blue pin and I want to record the user movement at the same time. Is there any way that I could use the GPS ...
4
votes
2answers
1k views

Remove MKMapView Annotations with a certain pinColor?

Is it possible to remove all annotations on a given MKMapView of a given pinColor? I'm trying to clear all user-entered annotations (pins) on my map before displaying new ones for a part of my app, ...
1
vote
3answers
4k views

Show route between current and desired location on iPhone MapView

I want to show a route on a MKMapView between the current location and a desired location as an annotation. What is the best way to do this?
11
votes
2answers
2k views

MKMapView ignores update of centerOffset in iOS 4

I previously created a custom callout bubble as a subview to the MKAnnotationView because the built in callout is so limited. This requires me to change to centerOffset of the MKAnnotationView when ...
6
votes
2answers
923 views

setNeedsDisplayInMapRect doesn't trigger new drawMapRect: call

I'm using a custom MKOverlay/MKOverlayView to completely cover the Google basemap with my own tiles, which are loaded asynchronously. I follow the pattern of requesting unloaded tiles when I receive ...
3
votes
2answers
3k views

Zoom to fit region for all annotations - ending up zooming in between annotations

I have a problem with fitting all my annotations to the screen... sometimes it shows all annotations, but some other times the app is zooming in between the two annotations so that none of them are ...
2
votes
1answer
1k views

draw line on MKMapView with pattern image

I try to draw a line on a MKMapView with a pattern image. The drawing is done by adding a custom MKMapOverlay view. I'm able to get the line drawn, but it seems that the drawing is done using only ...
2
votes
3answers
7k views

Get the coordinates of a point from mkmapview on iphone

Im trying to figure out how to put an annotation on a map based on where the user touches. I have tried subclassing the MKMapView and looked for the touchesBegan to fire but as it turns out, ...
15
votes
3answers
1k views

Prevent scrolling in a MKMapView, also when zooming

The scrollEnabled seems to be breakable once the user starts pinching in a MKMapView. You still can't scroll with one finger, but if you scroll with two fingers while zooming in and out, you can move ...
3
votes
0answers
452 views

Guide to acceptable “Live Bytes” of iOS6 app using MKMapView

I am looking to ensure my app does not consume too much memory on what are still fairly resource constrained devices. Several days ago I was using Instruments to determine how much memory my app was ...
12
votes
2answers
4k views

Draw a circle of 1000m radius around users location in MKMapView

(Using iOS 5 and Xcode 4.2) I have an MKMapView and want to draw a circle of 1000m radius around the user location. On the surface it would seem that implementing the mapView:viewForAnnotation: map ...
4
votes
1answer
581 views

Animate removal of annotations

I have a map and a set of annotations, each with a 'parent' property. Currently when I add annotations I implement the didAddAnnotationViews method to animate those annotations so they appear to come ...
2
votes
2answers
1k views

Is there any way to get the lat long of MKMapView of touch position - iPhone SDK

How to get the latitude and longitude of touch position on map view? I want to drop a pin where user touches just like google's javascript API does. Is it possible in iphone SDK? Tutorial would be a ...
2
votes
2answers
1k views

MKOverlay View is blurred

I'm trying to add a png image as a custom map using MKOverlayView. I'm almost there - I am able to get the image lined up in the right place, and I know that the -drawMapRect: method in the subclass ...
1
vote
2answers
277 views

altering the mkmapview (removing annotations)

I have a weird crash occurred in my application First of all, I would get you a glance about the application, there is a map that contains many annotations and also I customized the callout of these ...
1
vote
3answers
723 views

How to show single annotation pin for a region when i have multiple coordinates for that region?

I am working on the map application and as per requirement i need to show a single pin for a single region even if it has multiple user coordinates when its completely zoomed out but when its zoomed ...
1
vote
1answer
1k views

pass id to calloutAccessoryControlTapped

When tabbing the accessory button, i need to pass the itemId, so i can identify the item to pass on to my detail view. So far: Add the annotations: for (id row in self.detailItem) { Item *i = ...
0
votes
2answers
2k views

Pass data to detailView when annotation tapped on mapview

I have a map view and there are 10 store locations which data comes via webservice. I just want to push to my detail view to show address, telephone and other informations of the clicked store. I ...
0
votes
1answer
831 views

different coloured polygon overlays

is it possible to create different coloured polygons on a map view using the following method? -(MKOverlayView *)mapView:(MKMapView *)mapView viewForOverlay:(id )overlay{ say if i had 2 polygons ...
-1
votes
2answers
1k views

Will MKMapView automatically use Google Maps in iOS6, as google maps is restored in iOS6?

As apple has restored google maps in iOS6, if I'm using MKMapView in my iPhone app, will it automatically use google maps? please reply as I'm new to iOS.
5
votes
2answers
1k views

Can the memory used by MKMapView be released some how?

I am using an MKMapView in my iPhone application. When I load this view, the activity monitor instrument shows that the real memory of my App is increasing significantly. It keeps going up as you move ...
4
votes
3answers
1k views

How to fit a certain bounds consisting of NE and SW coordinates into the visible map view?

I need to fit a certain bounds within a map. I get the bounds from calling the google geocoder and reading the viewport property which looks like: { northeast = { lat = "30.4212235"; ...
4
votes
3answers
1k views

MkMapView cancel loading google tiles

I have a case where I need to import an overlay map in top of MkMapView. The overlay totally covers the google tiles below so there is no need loading, plus it adds overhead to the app. Is there a ...
3
votes
5answers
1k views

Disable double tap zoom in MKMapView (iOS 6)

in ios 5 i was able to disable the double tap zoom by just overriding it with a new double tap gesture. But it seems that the double tap gesture is no longer in the gesturerecognizer array that comes ...
3
votes
2answers
2k views

Change map type of an MKMapView

I'm trying to develop an interface for the user to change mapType views. I'd like to implement this by adding a fold effect to the bottom-right corner of the mapview where the user can press or press ...

1 2 3 4 5 7