0
votes
0answers
42 views

Set different actions for different annotations in MKMapView

I am trying to find a way to make multiple annotation disclosure buttons open other views. For example, annotation1 disclosure button needs to open ViewController 1.xib, annotation2 needs to open ...
0
votes
0answers
14 views

Ractangular overview with specific size, location and heading on MKMapView

I have a question which invloves drawing a rectangular overlay on an MKMAPVIEW. I get the currect user location (Coördinate), then I would like to draw a rectangular overlay on the MKMapView where ...
0
votes
0answers
74 views

how to reduce the time of showing blue circle and point in MKMapView

I use a MKMapView to show my current location , I found that when i am doing nothing ,it will take me about 15+ seconds to see the blue circle and point in the map view ,but if i move the map after ...
1
vote
2answers
385 views

MKMapview ios not showing current location when app is loaded first time

I have a MKMapView on my app. This is iOS6. -(void)viewDidLoad { ..... locationManager = [[CLLocationManager alloc] init]; locationManager.delegate = self; [locationManager ...
0
votes
3answers
320 views

How can I set my mapview to automatically zoom in on user's current location?

When I click on the "Map" button in my tab bar, it pulls up my Map View Controller, and shows the user's current location on the mapview (I'm using the following code): [mapview ...
1
vote
2answers
104 views

Does a MKMapView has its own location Manager?

There is a CLLocationManager i have created, and receiving the gps updates from that , but my doubt is whether the mapview has its own locationmanager, in that case there will be two location managers ...
0
votes
1answer
52 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 ...
0
votes
1answer
89 views

How to know if MKMapView is allowed to use current location?

I am showing the user location on a mapView with: self.mapView.showsUserLocation = YES; The user gets prompted the AlertView where he can choose whether to allow to use the current location or not. ...
0
votes
0answers
33 views

Accessing and Saving User Added Pin Annotations

I'm rather new to iOS development and coding in general so forgive me in advance for my overall newbiness. The Problem I'm in process of forming an app that uses MKMapView with pins that only the ...
0
votes
1answer
92 views

MapView annotation not pointing to correct location on app start up

I have a mkmapview that i create at run time. First i have to tell that my actual problem is on the ipad but not on the simulator. On view did load i am calling two functions. fillValues and ...
0
votes
0answers
84 views

Movable pin or drag to a point on MKMapview in iOS

I have a mapview currently showing my location.I can get the latitude and longitude from them and display them on TextFields. Now I am wondering if there is a facility to move to a new location i.e. ...
0
votes
2answers
142 views

Show user selected location on mapview

I am getting co-ordintes from user in UITextFields. He enters them in degrees,minutes and seconds. I get the latitude and longitude from them after conversion. I set the coordinates and "build" a map. ...
1
vote
3answers
273 views

iOS mapView sometimes doesn't load to default position

I have my mapView set to a default location every time the view is accessed. Sometimes when you access the view, it will be at the correct spot, although sometimes when you access the view, it will be ...
1
vote
2answers
432 views

Function “didUpdateToLocation” being called without changes

I initialize the locationManager this way: if (!self.locManager) { self.locManager = [[CLLocationManager alloc] init]; self.locManager.delegate = self; [locManager ...
0
votes
1answer
90 views

Compare gps positions

i have never worked with MKMapView or CoreLocation before so I need some help. I want to get my current position (maybe show this position in a mapView) and update my position periodically and compare ...
0
votes
1answer
1k views

iPhone : How do I display the user location on a map view without updating location / having GPS running in the background?

how do I display the user location in a mapView while not running GPS to update the location (at all)? Will mapView.userTrackingMode = kCLLocationAccuracyNearestTenMeters; do the job or will GPS ...
0
votes
2answers
298 views

How to change View while we touch any annotation

I want to add a functionality in MKMapView . I have a mapView with many annotations now I want that .. when I touch any annotation the whole view should be focus on that annotation . i.e. annotation ...
1
vote
1answer
633 views

Hide MKUserLocation when MKMapView showsUserLocation == YES

After setting mapView.showsUserLocation to true, is it possible to receive location updates without showing the MKUserLocation bubble? Returning nil in mapView:viewForAnnotation: simply shows the ...
6
votes
2answers
1k views

Preventing MKMapView from continually re-zooming and re-centering to user location

I seem to have the opposite problem from many of those posted here about MKMapView. Rather than not being able to get it to zoom to and display the current location, I can't seem to get it to stop ...
0
votes
1answer
230 views

Processing annotations from XML feed

Hee all, At this moment i'm working on reading locations from a (valid) XML feed. <locations> <location> <title>Supercoop</title> ...
3
votes
1answer
1k views

MKMapView not updating user position image

My MKMapView shows my position at startup but then the image never 'follows' me. The location gets updated and the screen does follow me, but the original "User Location" image stays behind. Here is ...
1
vote
2answers
1k views

Center region on userLocation in MKMapView

I'm confused. I have an MKMapView, and in the viewDidLoad method I do: - (void)viewDidLoad { mainDelegate = (PublicArtOmahaAppDelegate*)[[UIApplication sharedApplication]delegate]; ...
4
votes
3answers
9k views

How to set accuracy and distance filter when using MKMapView

When i use setShowsUserLocation with MKMapView to track user location, how do I set the accuracy and distance filter? I am not talking about CLLocationManager. Thanks,
0
votes
1answer
761 views

How to use the CLLocationManager to update location without asking user to enable the service?

Is there any way to test the user location service is enabled or not without asking user? What I want to do is to use the user location information if the service is already on, or not to use it if ...
4
votes
1answer
3k views

iPhone MKMapView - MKPolygon Issues

I am trying to plot a MKPolygon on a MKMapView in iOS 4.0. I have an NSArray which contains custom objects that include properties for latitude/longitude. I have a code sample below: - ...
1
vote
1answer
1k views

Placing a blue dot (user location) Only using CLLocationManager

I've read through countless posts here on stack and apple's docs and can't find anything to solve this problem. The issue is if you set mapView.showsUserLocation = YES, then MapKit will start making ...
0
votes
2answers
1k views

get the latitude and longitude from a point in MKMapView?

I just want to implement a small function that allows system to obtain a location on MKMapView where the user has touched. I wrote some code as following: #import "UIViewTouch.h" @implementation ...
0
votes
1answer
564 views

get location from iphone mapview

I am doing a map based application in iphone and i am need to get the location of the center of the map view. I need to get the location updated when the user Drags/Moves/Zoom the mapview. So that I ...
0
votes
1answer
401 views

how to setup mkmapview to display pois at 100 meters range from my current location?

i have 200 pois in my app. i want to display the nearest pois to the user within 100 meters range in a mapview. How is this possible?
5
votes
1answer
2k views

check if a user allows the app to use their location

The first time the app tries to get the users location they are prompted with "Would like to use your current location" and they can hit Don't allow or ok. Is there any way to find out if the user ...
1
vote
2answers
3k views

Using the showUserLocation property of MKMapView

I have an app at the moment which shows various pins on a map. I've tried setting mapView.showsUserLocation = YES; to show the user's current pos, however this crashed my app ("Program received ...