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
0answers
9 views

path not drawing for MKOverlayView

Im making 1 overlay view instead of using multiple overlays in order to improve performance. So far everything is getting passed through correctly, the boundingRect is calculated properly but i dont ...
0
votes
2answers
13 views

How to add a uitexfield & a uibutton in MKPinAnnotationView callout?

Hello there i was wondering if there is any way to add a UITextField & a UIButton in MKPinAnnotationView callout bubble and in turn if the user clicked button it will call some method?
0
votes
1answer
18 views

MKMapView Setting Initial Zoom level

I use this code in viewWillLayoutSubviews to set the initial region of my map. CLLocationCoordinate2D startCoord = CLLocationCoordinate2DMake(13.747266, 100.526804); MKCoordinateRegion ...
0
votes
1answer
21 views

How can i refresh my other view controllers from an action of slider

I have a UITabBar Controller having three view controller. I am trying to refresh my two view controller which are map view controller and tableview controller; from third view controller with an ...
0
votes
0answers
7 views

Drawing circle around user location

I want to add a circle to around my user point. I know this question is asked a lot but when i implement general approach i can not see my circle in my map. Here is my code: MyMap.h #import ...
0
votes
1answer
31 views

Change color of pin on map after pressing button on another screen

I need to find a way to change the pin color when the map is loaded by pushing a button from another screen. For example, the original pins are all red, but when I go to a page and push the map ...
0
votes
2answers
27 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
28 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. ...
1
vote
2answers
35 views

Increase maximum zoom *out* of MKMapView in iPhone/iPad

I'm having trouble getting an MKMapView to zoom far enough out (I need to see every continent i.e. the entire world in one MKMapView) on the iPhone/iPad. The maximum "out" zoom seems to be hard ...
0
votes
1answer
37 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 ...
1
vote
3answers
36 views

MKmapview - CLLocationCoordinate2D

I have an array NSMutableArray where I save an MKuserlocation type - locationArray. anyway now I want to get the data from this array and save it to an array from type CLLocationCoordinate2D. but ...
0
votes
0answers
32 views

How to allow a location to be selected by the user (not the current location)?

I've looked everywhere and can't find anything on this, which makes me suspect it might be self-evident so my apologies if that is so. However, I want to create the functionality whereby a user can ...
0
votes
1answer
58 views

iOS mapview auto layout issue

Im creating an tab bar app with a storyboard. Basically on the SecondViewController, I set up an MKMapView with a toolbar at the top for changing views etc. I set that span and added an annotation ...
0
votes
1answer
37 views

MKMapView is not showing annotated points

I am trying to show the location of my current location and random 5 points points like this: - (void)viewDidLoad { [super viewDidLoad]; locationManager.delegate = self; ...
1
vote
0answers
30 views

MKMapView doesn't display tiles on highest zoom - appears to be related to iOS 6.1.4

I'm working on an app that is heavily GPS-based. Everything worked fantastically, specifically meaning my app's display of map tiles worked great, seemingly until I updated my iPhone5 (test device) ...
0
votes
0answers
8 views

Getting the frame of Rect MKPinAnnotationView

I am writing an iPad app with an MKMapView which add adds a new annotation pin to the map with every tap of the user. I add the annotation (MKPinAnnotationView) to my MKMapView in the ...
0
votes
2answers
26 views

A MKMapView delegate calling issue

I am facing an issue about MKMapView delegate. In iOS5, When I clicked a Pin on the mapview, thedidSelectAnnotationView: delegate will be called first, and the next is viewForAnnotation: delegate ...
0
votes
2answers
34 views

MKMapView display route

Im pretty new to mkmapview so I'll hope my question will be clear enough. Let's say I have a code where im saving the userLocation in an array (MKuserLocation type). im saving this for every step the ...
0
votes
1answer
17 views

MKAnnotation rotating when pinching the map

I have an app where I am tracking someone who walks. Once I get the users heading, I rotate the MKAnnotationView based on the heading. Everything works when tracking and rotating the MKAnnotationView ...
0
votes
1answer
22 views

MKAnnotation not updating position

I am using the HGMovingAnnotation and HGMovingAnnotationView code off of github to animate a MKAnnotation on an MKmap. When I run the example project from HG project everything works fine. I have ...
0
votes
1answer
30 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] ...
2
votes
1answer
35 views

How to show user location when user tap don't allow for the next time?

In my app,I want to show user location in one of my UIViewController which uses MKMapKit.So when the user selects this View Controller they will be asked whether to allow or don't allow. If user ...
0
votes
1answer
49 views

Check if String is a Partial Match to Another String

I have a search bar on my map view that allows the user to search for the name (annotation title) or address (annotation subtitle). I have it working just fine if the user types in the entire title or ...
1
vote
1answer
21 views

Apple Map (MKMapView) Mercator Projection's EPSG

I can't seem to find which projection Apple Map's Mercator Projection uses. Doesn't say on their guide: Location Awareness Guide Anybody know off hand?
1
vote
1answer
60 views

iOS: Is it possible to add a triple tap gesture recognizer to a MKMapView?

I have a MKMapView, which zooms in when double tapped (default behavior). I want to add a triple tap gesture recognizer to the map view that zooms out again to a certain initial zoom level. The ...
0
votes
1answer
41 views

Adding MultiplePointAnnotation In MapView ios

Im trying to load annotation point into mapview in which i have the seperate array for latitude and a seperate array for longitude here is my code - (void)viewDidLoad { [super viewDidLoad]; ...
0
votes
0answers
32 views

Search Annotations on MKMapView

I have a map view with many annotations, each with a title and subtitle. There is also a UISearchBar on my map view. I want the user to be able to search for either the name of the location ...
0
votes
0answers
17 views

Avoid clossing MKAnnotationView when tapped

I've used a nice and beautiful custom callout as shown in the picture. The callout is just a MKAnnotationView with the shape of a bubble. When I have to show it I add it into the MKMapView's ...
0
votes
0answers
24 views

center point of MKAnnotation callout

can I readjust the center point of a MKAnnotationView's callout? I already have a custom center point for my MKAnnotationView but the callout does not seem to align with it. Thanks
1
vote
2answers
47 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 ...
-4
votes
0answers
21 views

How should MKMapView behave if you add the same MKAnnotation twice? [closed]

I was wondering how would MKMapView behave if I added the same MKAnnotation twice? (Same object reference). I mean, if I add an MKAnnotation to a map, then a few seconds later add the same without ...
1
vote
1answer
68 views

MKPointAnnotation not working

Hello i got this method: -(void)adresseZeigen { NSLog(@"%s",__PRETTY_FUNCTION__); selectedAnnotation = [[MKPointAnnotation alloc]init]; selectedAnnotation.title = selectedCompanyName; ...
0
votes
1answer
34 views

Show MapView Annotations for Selected Radius

I have a map view with several annotations on it. I have a settings button on my navigation bar that takes the user to a picker view that lets them show all the annotations or select a radius of 5, ...
0
votes
0answers
13 views

mkannotationview addannotation with custom animation

MkMapView provides MkPinAnnotationView which can be added to the MkMap in a animated manner(animatedrop). I'm currently working with MKAnnotationView (custom), where I need to add my custom ...
1
vote
1answer
19 views

MKMapView does not scroll around 180 degrees

I have an MKMapView with the center set to -42, 179.5 degrees and scrolling enabled. I can scroll so the center is at locations less than 180 degrees, but if I try to scroll East past the meridian, ...
0
votes
0answers
33 views

Why is my MkPointannotation not showing a button?

I am new to Objective-C and IOS programming, so this might sound dumb. I have a MKPointAnnotation with a MKAnnotationView defined like this: -(MKPointAnnotation*)setAnnotation: (NSString*) title ...
0
votes
1answer
20 views

App crash while loading MKAnnotation in map view

In my application i have integrated a view controller like container (split view). Controller view controller container two view. Detail view and selection view(table view). While selecting the ...
0
votes
1answer
31 views

Get Directions Button on Map Annotation Detail View

I have a map view with several annotations. The title of the annotation is the name of the business and the subtitle is the address. There is a detailDisclosure button on the annotation view that ...
0
votes
2answers
39 views

MapView not showing - Objective C

I'm trying to get the map view in my app by creating it dynamically but the map view is just showing the pale yellow coloured view. I imported the MKMapView and CoreLocation frameworks. Here is my ...
0
votes
0answers
15 views

Fluctuation in iPhone Screen when trying to open mapview

I have an app which has a functionality such that when a certain button is pressed, an alert view pops up asking for certain login credentials. When submitted, a web is called which returns that ...
0
votes
0answers
34 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 ...
2
votes
1answer
95 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
31 views

How to set a scope to click on Annotation on an iOS map

I'm developing an iOS game with a Mapview, where I want to select an opponent from the multiple annotations on Map then I'll hit him. In the Map first user will select a range where he/she will find ...
0
votes
1answer
24 views

Calculating distance between user & a nearby location, and calculated distance keeps showing up as 0?

I'm using the following code to calculate the distance between my app user's location, and nearby locations (annotations). When I try to display the "Distance Away" as text in a label, it keeps saying ...
0
votes
1answer
30 views

Open Detail View from Annotation

I have a map view with several annotations. Each annotation has a button that takes the user to a detail view for that annotation. The detail view currently has two labels, one for the title from ...
1
vote
4answers
76 views

Memory not being released for MKMapView w/ ARC

I have a custom UIView called ActivityDetailView that I instantiate and then add to a scrollview within a parent view controller. When this custom view is allocated, it takes up about 1mb each time ...
0
votes
0answers
39 views

MKMapView not showing correct location on map

I am using MKMapView in UITableView to display user's current location and the event location. It is not displaying correct location in it. Like when address is given sec 35 chandigarh or nehru ...
1
vote
1answer
41 views

Is there a way to restrict MKMapView Zoomlevel in iOS6

In one of my iPad apps, I use MKMapView to show regions and I have a weird issue. I use setRegion: animated: method to set a particular region from a noOf points. When I zoom from that particular ...
-1
votes
1answer
40 views

Adding Multiple Annotations to MKMapView [closed]

I'm wanting to add several annotations to my map view but I'm not really sure how to go about it. I'm thinking an array. Here is how I'm currently doing it. - (void)viewDidLoad { ...
0
votes
1answer
31 views

In MKMapview how to get the list of driving direction in ios

In Map-view i got the route from source to destination properly. But i want to get list of route direction in map-view.I added below one sample link,likewise i need. Is it possible in iphone?if yes ...

1 2 3 4 5 48