0
votes
1answer
13 views

zooming on Mapview Crashes the app on iOS6

i am using mapview. when i zoomin on map it shows did recieve memory warning and crashes the app in iOS 6 devices .but its working fine in below versions. Its taking more memory when i zoom in but ...
0
votes
2answers
38 views

With what coordinates do i use to manually draw a custom path with an MKMapView?

There are CLLocation2D points, MKMapPoints, MKCoordinates, and convertCoordinate:toPointInView: which all give you points in one form or another. I am drawing a custom route in: - ...
0
votes
0answers
17 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
49 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
1answer
34 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
0answers
54 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
4answers
107 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 ...
1
vote
1answer
61 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 ...
0
votes
1answer
137 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 ...
0
votes
0answers
34 views

add circular overlay to mapview

I am trying to add a circular overlay in ios mapview,in view did load i added following code CLLocationCoordinate2D center = CLLocationCoordinate2DMake( 53.809638, -1.554586 ); MKCircle *circle = ...
0
votes
0answers
45 views

Auto zooming out mkmapview

I have included the Mkmakview in my application ,Im not showing the user current location,just showing only the gps device data.Now the problem when i zoom in to the map after a particular seconds its ...
0
votes
1answer
83 views

how to hide current Location annotation from mkmapview

In my application i have used the MKmapview,I want to hide the user current location annotation point,Here my code - (void)viewDidLoad { [super viewDidLoad]; appDel=(AppDelegate ...
0
votes
0answers
69 views

Map crash ios6 “Received memory warning”

In my application when i tried to open the map view ,it being crashed with ios6 ipod with log of 2013-04-10 15:33:30.398 Finder[4682:907] Received memory warning. 2013-04-10 15:33:30.860 ...
0
votes
0answers
19 views

MKMapKit & ModalView

I have the following code in viewDidLoad in my ModalView. The first time I call the ModalView, the map centers to the Users current location but does NOT zoom in. After I dismiss the ModalView and ...
1
vote
0answers
112 views

iOS MKLocalSearch only returns 10 results

I'm starting to use the MKLocalSearch API for MapKit. It works, and returns data, however it always appears to only return 10 results, no matter what size the region is or what the search term is. ...
0
votes
1answer
56 views

ios6 map not refreshing [closed]

In my application i used to MKmapview to show the current pet position using gps device , While the pet in moving condition the postion of the pet is not refreshing in ios6.1 accesses by apple MAP, ...
1
vote
1answer
78 views

Show transit stations, restaurants and other places on iOS 6 MKMapView

Is it possible to show businesses, restaurants, transit stations, parks, etc. on an MKMapView in your own app? Below is a picture of how this looks in the iOS 6 Maps app. Can I do the same in my own ...
0
votes
0answers
22 views

Determine touch location for rightCalloutAccessoryView

I am trying to determine the touch location for my right accessoryView in a MKAnnotation. The accessoryView is of custom type but child of UIControl (UIButton actually). I display several subviews ...
0
votes
3answers
137 views

How to make Maps in iOS6 same as iOS5

I have an app where where i am using MkMapView and its showing differently for iOS6 and iOS5. I have attached the screenShots below iOS 6 iOS 5 Can Anyone tell me how can i solve this issue ?
1
vote
2answers
124 views

MKCoordinateRegionMakeWithDistance throws “Thread 1: signal SIGABRT”

i got a new issue and i don't know why... My further solution was here posted by Rob. I love his work and it works very well until the update comes to iOS 6.1. - (void)loadKml:(NSURL *)url { // ...
-1
votes
1answer
88 views

Know if MKMapView is showing map region or yellow grid in iOS 6

Is there are any way to know when MKMapView is showing the yellow grid when the app does not have an internet connection?
1
vote
3answers
200 views

Using IBAction Buttons to Zoom MapView

I have an issue. My current location is displayed and centered in a map view however the map region doesn't get zoomed in to. I tried taking Rob's advice by taking span and region out of the ...
1
vote
1answer
562 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 ...
0
votes
0answers
79 views

MKMapView redrawing multiple times when MKOverlays are added and removed on iOS6

We have an app that adds and removes map polygon overlays as the user pans and zooms the map. We correctly make the calls to add and remove them on the main thread. We are doing this with the new iOS6 ...
1
vote
1answer
110 views

Polygons from my KML data not showing up in my IOS 6 map application

I am building an app that has a MKMapview. The view that my code is in extends MKMapView. After I get data I create a KMLParser and have it parse my KML file witch seems to work just fine. I got the ...
0
votes
2answers
155 views

How we can put label on custom pin in MapKit?

I want to display a dynamic label on custom pin. I used MKMapView, CLLocationManager,MKAnnotationView and MKPinAnnotationView. So, please help me friends. Like:
1
vote
0answers
117 views

Manage memory allocation issue on Map iOS

In my iPhone app I have a map view. In this I am displaying a number of pin views depends on the data from a web server. Here is the method I used for it. - (MKAnnotationView *)mapView:(MKMapView ...
1
vote
1answer
143 views

MKMapKit setRegion:animated:YES randomly doesn't animate

I have a ViewController with a MKMapView. From this controller I display a modal view to pick an address. When the address is picked, the modal view is dismissed and we are back to the main ...
2
votes
2answers
316 views

How to get driving directions within my app iOS6

I am using Apple Map's in my app and on my view i want to show the driving direction from the user location to the current location that i have on the view, now i just want all this inside my app only ...
0
votes
0answers
96 views

iOS snap to road with MapKit using external (non-Google) API?

I am using OpenStreetMap Directions and showing results on MKMapView. I am able to draw the polylines from one waypoint to the other, but these polylines won't snap to roads (image attached). I ...
0
votes
1answer
42 views

ios 6 - an app which allows user to create mapannotations while on the street returns multiple annotations with same coordinates

Im building an app that lets a user build his own map annotations while he walks around the neighbourhood. Im testing this right now. Everything works smoothly Im seeing that when Im out on the ...
2
votes
1answer
105 views

MapKit doesn't come with venue names?

This must be a super newbie question, but I'm just starting out with Mapkit and it seems that the venue names which I took for granted don't come with Mapkit right out of the box. The version I see ...
0
votes
0answers
52 views

Pins are not updated correctly on map view when using clustered pins

In my application I'm using cluster pins mechanism by showing the count on it, if the count on pin is greater than 1 i'm using one type of image 'groupPin.png' , if it is equal to 1 i'm using another ...
3
votes
2answers
172 views

Custom map path line

I'm having trouble with drawing a line on the map with a stroke. (inside color and outside color) I beleive i'm on the right path and have subclassed mkOverlayView to override the drawing (needs to ...
1
vote
2answers
389 views

MKCoordinateRegion setRegion issue

I used this code for iPhone iOS 5.0 device. And everything was OK: self.mapView = [[[MKMapView alloc]init] autorelease]; mapView.delegate = self; mapView.frame = CGRectMake(0, 0, 320, 414); [myView ...
0
votes
1answer
62 views

CLLocationManagerDelegate most accurate position

I have a simple App here that gets the user most accurate position and display it on a MKMapView. I'm using the code below. - (void) locationManager:(CLLocationManager *)manager ...
1
vote
1answer
127 views

Callout button crashes app - MapKit

UICalloutView willRemoveSubview:]: message sent to deallocated instance; This only happens when I tap the callout button, but not on the first and not on the 2nd tap, but from the 3rd tap. So I ...
1
vote
1answer
248 views

Memory warnings with maps in iOS 6

I developed the app which used MKMapView runs both in iOS 5.x and 6.x devices, when I run the app in 5.x device, there are no memory warnings, but when I run in 6.x device, I found bunch of memory ...
0
votes
1answer
534 views

gpus_ReturnNotPermittedKillClient error thrown with MKMapView when app is backgrounded

Doing some investigation online, I've noticed that gpus_ReturnNotPermittedKillClient gets thrown when OpenGL actions are triggered while an app is backgrounded. I'm currently working on a project ...
0
votes
2answers
299 views

Trouble to show route between points Google Directions API. iOS 6

I have a problem when displaying a route in MapView if route has waypoints. I use DIRECTIONS GOOGLE API: https://developers.google.com/maps/documentation/directions/ The route is not drawn using the ...
1
vote
1answer
292 views

MKMapView setRegion: animated: crashes the app (edited)

I have a MKMapView that expands (vertically) on tap (using UITapGestureRecognizer) and fires off an api call on pan (using UIPanGestureRecoginizer). Everything was working fine, until some time back, ...
0
votes
2answers
105 views

setRegion:animated: does not make region change

I'm trying to get user location and display it in mapView with following code in iOS6: - (void) locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations{ if ...
0
votes
1answer
63 views

FBPlacePickerViewController not returning selection's correct location

I'm using FBPlacePickerViewController on a project, and regardless of the selection I make on the picker, it always returns the same coordinates. I'm using _placePicker.selection.location.latitude ...
1
vote
1answer
151 views

How to use google map in ios instead of default map?

I want google map in my native app instead of default mapkit map in ios 6.
0
votes
1answer
158 views

How to change back annotation pin color to original?

I am change annotation pin color when clicking annotation pin and click another annotation pin change pin color so currently two annotation color changed,but i want currently choosing annotation color ...
0
votes
1answer
179 views

Crashing while adding MKAnnotation to MKMapView in iOS6

I am trying to loop through the addresses i have in an array, geocode them and add to MKMapview as Annotations. This the crash i am getting: [LocationAnnotation coordinate]: unrecognized selector sent ...
0
votes
1answer
90 views

“Forward” a directions request from MKMapView

I have a MKMapView with a few Annotations. I would like to add the option to "forward" the user to the native Maps (iOS6) app for directions to the selected annotation from within the callout ...
0
votes
1answer
204 views

Detecting panning + decelerate of MKMapView

I'm trying to capture panning and the 'end of scrolling' on an MKMapView. Panning is easy to do with a gesture recognizer. However, MKMapView doesn't seem to implement a UIScrollViewDelegate in iOS 6. ...
1
vote
1answer
612 views

Adjusting MKMapView's Frame on iOS 6 in Objective-C

I'm trying to adjust the frame of my MKMapView created on IB for 4-inch devices but it doesn't work. Here's my code on viewDidLoad: - (void)viewDidLoad { [super viewDidLoad]; // Do any ...
0
votes
0answers
28 views

Adding image to annotationView in visible region

From Web service am getting all images and added to NSArray which is having image,latitude,longitude and distance.Then am displaying the images on Map view which is sorted by ratings for top ten ...

1 2 3