Tagged Questions
0
votes
0answers
14 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
0
votes
1answer
18 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
25 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
69 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
34 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
50 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
21 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
30 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
50 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
52 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
15 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
69 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
44 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, ...
0
votes
1answer
52 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
19 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 ...