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
29 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
45 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
35 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
24 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
6 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
25 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
31 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
14 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
20 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
25 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
32 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
48 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
19 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
52 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
34 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
16 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
21 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
44 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
67 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
29 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
18 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
30 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
19 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
28 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
28 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 ...
1
vote
0answers
69 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
21 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
29 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
72 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
38 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
38 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
30 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 ...
0
votes
1answer
50 views

how to get the details of route direction in MKMapview

i want to get the direction route detail in MKMapview.i mentioned the one sample url below.likewise i want but don't want to go next URL. please anyone help if u know.is it possible or not in ios? ...
0
votes
2answers
29 views

Zoom on Current Location in Map View

I have a map view and it is set to zoom in on the users current location. The problem is that if the user changes location when looking at the map, it zooms back into the current location. It's ...
-1
votes
2answers
50 views

iphone 5 retina 4 inch mapview

I'm trying to adapt my app to retina 4 screen for iPhone 5, and adding the png archive and everything resizes but the map view, that moves to the top and leaves a white square on the bottom. I'd like ...
0
votes
1answer
38 views

MKOverlayView and changing its alpha

I have a custom MKOverlay and MKOverlayView. When the MKOverlayView is created, I can set the alpha of the view: -(void)drawMapRect:(MKMapRect)mapRect zoomScale:(MKZoomScale)zoomScale ...
0
votes
1answer
60 views

MKMapView warning : “default.styleproto”

What is "default.styleproto" ? I searched the web and there seems to be quite a lot who are having the same warning : Couldn't find default.styleproto in framework It should be related to iOS6 ...
1
vote
1answer
45 views

json annotations not showing on mapview

I am trying to show information on a map from a json but nothing happens I think there is something missing so the information can be shown on the map Manage to get the json working and get ...
0
votes
1answer
29 views

How to draw a map using mkmapview with driving directions between map annotations

I'm developing an App with some maps functionalities (among other things), I'd like to draw a map from my current location to a given destination, but I do not want to use the shareadapplication, The ...
-1
votes
1answer
43 views

objective c - starting Apples Maps or Google Maps on MapView [closed]

i want to know how I can start other apps from my app. Here the situation: I have a MapView pointing to a specific longitude/latidude. I want to give the user the chance to navigate (Google Maps or ...
0
votes
1answer
47 views

Annotated pins are not getting loaded during reloading of map

I have used apple maps in my application for implementing maps.I used the following code for that. My problem is that,It is showing the pins only when it is loading for the first time. I have ...
0
votes
2answers
58 views

Custom annotations with same image

As you can see in the image below that all annotations have same image and discount which is not correct, they should have different image and discount. How can I fix this? I am using a custom ...
0
votes
3answers
59 views

How to display a MKMapView without street names?

I need to display a map without street names. is it possible using MKMapView ? if not, is there a different map API for iOs that supports this? thanks, Nimrod

1 2 3 4 5 48