Tagged Questions
0
votes
0answers
18 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 ...
1
vote
1answer
70 views
MKPointAnnotation not working
Hello i got this method:
-(void)adresseZeigen
{
NSLog(@"%s",__PRETTY_FUNCTION__);
selectedAnnotation = [[MKPointAnnotation alloc]init];
selectedAnnotation.title = selectedCompanyName;
...
2
votes
1answer
108 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 ...
1
vote
0answers
53 views
MKMapView userLocation return coordinates 0.0;0.0 on app's first launch
I'm currently developing an app that have use an MKMapView control. It is suppose to show the user's location via the blue dot (like the Maps application), but when the app is first installed on the ...
1
vote
1answer
122 views
How to stop the loading flicker when adding a large amount of MKOverlays to a map
I have an app that displays cycle paths in the UK on a map:
I found, for performance reasons, I had to split up the fetching of the map data into tiles. I fetch a tile at a time using an ...
1
vote
2answers
48 views
How to make a MKMap fit inside the specified View-Region?
i've got a little Problem on setting up a MKMapView.
I really just want that the complete map fits into the MkMapView-Region specified inside
the Storyboard.
But it seems that it is not possible to ...
0
votes
0answers
68 views
signal SIGABRT, when trying to get distance to annotations
I'm trying to calulate the distance between the userLocation and my annotations (from plist), But every time im run the mapView im getting signal SIGABRT error.
I'm doing the calculate in my ...
3
votes
2answers
213 views
MKMapView inside a UITableViewCell
I have a UITableView with UITableViewCells that contains a MKMapView.
The Problem: if the table cell ever gets selected, then move the map, you see the mapview is all white and you only see the ...
0
votes
1answer
202 views
Strange behavior of MKMapView visibleMapRect property
I tried to set visibleMapRect property of MKMapView object but result map rect is not the exact what I expected.
This is my code:
NSLog(@"current size %f %f", mapView.visibleMapRect.size.width, ...
1
vote
0answers
57 views
Intercepting touches on MKOverlay border
One of the functions of program is to select a piece of the map. I do this using MKAnnotations and using a MKPolygonView (with just the border visible) to connect the "dots". (Please take a look at ...
1
vote
0answers
43 views
Rotate MKMapView? [duplicate]
Possible Duplicate:
Rotate the content of a MKMapView
I was wondering if there is a way to rotate a MKMapView. By default north is locked up and south down, is there a way to unlock this ...
2
votes
2answers
152 views
How to add a transparent mask on map View [closed]
I want to add a color mask on my MapView screen (without coordinate, I want to display it on all my mapView) and keep the control on this mapView.
I've heard about MKOverlay but I dont know how to use ...
2
votes
1answer
200 views
Get MKMapView to respond to touch up inside events
I am attempting to disable zooming and scrolling on an instance of MKMapView and get it to respond to a touch up inside event (or similar). The accepted answer on the question linked below uses a ...
0
votes
1answer
113 views
Boundaries to scrolling of mapview- ios [duplicate]
Possible Duplicate:
MKMapView - Limit map scroll to a square overlay
Is there a way to limit the scrolling of a map to scroll only within the boundaries of a specific country (region)? ...
-1
votes
4answers
122 views
Zoom Out the Location in MapView
Im Having MapView In which I added some 5 Annotations in the Areas of Chennai.. I want to Zoom Out the Chennai as soon as the MapView Begins Loading so that Annotations will be Visible Clearly.
In ...
1
vote
3answers
65 views
Adding Alertview with coordinates of the Pressed place in Mapview
Im Having MapView.. I added this as a subview of ViewController's View. I have the following Code in ViewDidLoad:
[self.view addSubview:mapView];
UILongPressGestureRecognizer *longPressGesture = ...
1
vote
4answers
451 views
Search for a location in a map view on iPhone [closed]
I have a MapView and a SearchBar. I enter some place name into the search bar. I need the MapView to search for the place I entered and mark that place with an annotation. Can anyone suggest the best ...
2
votes
3answers
1k views
MKAnnotationView custom image is not shown
I am trying to add a custom image instead of the regular pin on the map. But it remains a red pin... What am I missing?
- (MKAnnotationView *) mapView:(MKMapView *)mapView viewForAnnotation:(id ...
0
votes
1answer
216 views
Z Order for Touch events/Annotation selection on an MKMapView
I have an MKMapView with several annotations on it, and one very important one that's on the center of the map. When the map is zoomed out a little, all the annotations appear clustered together and ...
0
votes
2answers
367 views
Call another view when user taps on pin in mapview
I have Map with multiply annotations and I want hen user taps on pin to call another view.
I'm using storyboard.
With .xib this would be like this.
...
- (MKAnnotationView *)mapView:(MKMapView ...
0
votes
1answer
231 views
Using MKMapView without map, only overlays
I need map with custom overlays and without showing/loading maps themselves. What is the best way to do this?
2
votes
2answers
273 views
Adding random MKAnnotations around Current Location in a MKMapView
I have an MKMapView that shows the current users location. When I click a button in the navigation bar, I want to randomly drop 10 MKAnnotation pins. These can be dropped anywhere, randomly, but only ...
0
votes
2answers
773 views
UIPinchGestureRecognizer not called
I have a single view on my iOS application, with a mapView in it.
When adding a tap or long press recognizer, the events are properly called.
But not with the pinch event...
...
2
votes
2answers
691 views
How to hide the blue dot and the circle on an MKMapView
Is there a easy way to hide it? I use the user location, but I don't want to show the blue dot. How can I hide it?
-- edit--
Am I using something wrong?
@interface ALMapaViewController : ...
4
votes
2answers
2k views
Quickly adding single pin to MKMapView?
I have a GPS coordinate (latitude, longitude) and I quickly want to place a single pin on a MKMapView showing that position. Everything works just fine, but as I only need a single pin with no callout ...
0
votes
2answers
895 views
Annotation details after detail disclosure pressed?
I have a MKMapView annotation object that has a right callout accessory detail disclosure button. When the button is pressed I am using addTarget:action:forControlEvent to call a selector method which ...
0
votes
1answer
271 views
Have more than one Pin Annotation? MapKit
At the moment I have 1 pin, when you tap the pin it displays information. However I want more than 1 pin at different locations. How would I do this?
This is my code.
Map.m
- (void)viewDidLoad
{
...
0
votes
1answer
308 views
how to allow user to “get directions” when clicked on a map annotation pin
I am able to display several locations or annotation pins on a map. And I display a pop up with a title when user clicks on it. how do I allow user to get directions when they click on the ">" button ...
2
votes
2answers
254 views
How do I update an annotation without using setCoordinate?
I have a subclassed NSManagedObject that conforms to the MKAnnotation protocol and it has NSNumber properties for latitude and longitude.
When I change any coordinates myself, I use setCoordinate: ...
2
votes
2answers
502 views
MKMapView setSelected: animated: not working first time
When I call MKMapView method setSelected:animated: on an annotation, it doesn't work. But if I call it next time with a different annotation, it starts working.
Anyone have any ideas what could be ...
0
votes
2answers
297 views
MapView return to the current location annotation?
I'm asking my MapView to show the current location of the user that i get it from CLLocationManager using the delegate of startUpdatingLocation and also i add to the MapView some annotations but the ...
0
votes
1answer
772 views
MKMapView must be initialized on the main thread
I am new in iphone using MKMapView to load a google's map in my application .But its throwing an exception "MKMapView must be initialized on the main thread.". So where should I initialise my ...
0
votes
3answers
105 views
How can i use Maps directions app?
I have an app that display locations on the MapView, and i want to get the direction of a specific location from my current location using the Directions APP on the iPhone. how can i do that?
0
votes
1answer
315 views
Black box over MKMapView
I have an MKMapView and another UIView subclass that is overlaid on top of the map. The custom view is transparent (I use it to overlay an inner shadow around the edge of the map). Now when I drop a ...
12
votes
2answers
2k views
iOS: Notification when MKMapView is loaded and annotations/overlays are added?
I am aware of the delegate methods used to let me know when the map has loaded and annotations and overlays have been added. (mapViewDidFinishLoadingMap: mapView:didAddAnnotationViews: ...
1
vote
1answer
605 views
UILongPressGestureRecognizer on MKAnnotationView not working for single touch
I've been trying to use a UILongPressGestureRecognizer in a MKAnnotationView subclass. Interestingly the gesture recognizer only triggers when using two ore fingers/touches.
What prevents the gesture ...
1
vote
2answers
4k views
In MkMapview calculate distance between two points
Hi in iPhone App How to calculate distance between two points in MKMapView
as shown in image
first point would be center point of visible map in mapview
2nd point would be any of corner of ...
2
votes
1answer
482 views
Prevent reloading of MKMapView inside UITableViewCell
I've made a subclass of UITableViewCell and added a MapView. Everytime I scroll the map of the screen and scroll back to that cell it loads again. (As you all know it's the default behaviour for cell ...
6
votes
4answers
2k views
how to customize MKPolyLineView to draw different style lines
I want to customize the lines drawn on MKMapView to show a route so that the lines have a border color and a fill color. Similar to this where it has a black border and is filled with another color:
...
0
votes
1answer
569 views
How does MKMapView's showsUserLocation work?
As the mac desktop's simulator don't have location service, I can't try by myself and I choose to ask here.
the google map app can do continuous locationing for your device, as you move you can see ...
2
votes
0answers
168 views
May I restrict zoom levels of MKMapView? [duplicate]
Possible Duplicate:
Is there way to limit MKMapView maximum zoom level?
May I restrict zoom levels of MKMapView, i.e., set max and min zoom levels of MKMapView?
0
votes
2answers
124 views
A question about MKMapView Annotations
From documentation, the MKMapView property, Annotations, is a NSArray and not a NSMutableArray. So Annotations is supposed to be "immutable". But MKMapView's instant methods : addAnnotation and ...
0
votes
1answer
170 views
Getting current location and displaying search results automatically within MKMapView
I would like to get the current location of the user in my application with MKMapView and then display the search results automatically when the user opens the map. For example, the user open the ...
2
votes
2answers
3k views
MKCoordinateRegionMakeWithDistance does not set the correct region on the MapView
I have this code :
- (void)viewDidLoad
{
[super viewDidLoad];
CLLocationCoordinate2D userLocation = CLLocationCoordinate2DMake(48.9793946200, 2.4726272850);
CLLocationDistance dist1 = ...
1
vote
1answer
927 views
iPhone - Defining a MKMapRect with 2 MKMapPoint
How would you build the simpliest way a MKMapRect with 2 MKMapPoints, assuming that you don't know where are those points (the first can be lower or upper, more on the left or the right, compared to ...
2
votes
1answer
272 views
Should I remove or hide my annotations in MKMapView?
I was wondering which would be faster/more efficient when it comes to taking off annotations from the map: hiding or removing. I need to remove and add 100 or so pins every time the user zooms in or ...
3
votes
1answer
283 views
MKAnnotation removing (processor heavy)
This function accepts an array of latitude/longitude pairs. It converts all of them into MKAnnotations, then for each of the annotations currently present on the map, it checks if it's present in the ...
-2
votes
1answer
466 views
Find coordinates of current location and figure out the country
Is it possible to find out the coordinates of my current location and figure out which country this is in?
2
votes
1answer
606 views
MKMapView removeAnnotation is not removing the selected annotation
When I call removeAnnotation and pass it a pointer to the annotation I had added, it is not removing the annotation... Is this because it had made a copy of the annotation when I added it?
Thanks
...
-2
votes
4answers
2k views
Convert latitude and longitude into meters or kilometers
I have two MapKit annotations, displaying latitude and longitude.
Is there any way for me, through existing Objective-C iOS API functions to calculate the distance between the two?