Tagged Questions
2
votes
1answer
36 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
2answers
105 views
MKMapView Cannot Set Center By Location
I want to get current location and animate to this coordinate on MKMapView. I got current location but I didn't do animate to this location on MKMapView. How can I animate to current location with ...
0
votes
2answers
78 views
Track user through GPS ,ios
I need to track the user location through gps.I need to show a polyline along the path ,the user travels.And also need to calculate distancs,speed and elapsed time.Please guide me with some tutorials.
...
0
votes
1answer
27 views
User location not showing in map
I need to diaplay user current location in map with blue dot circle. I used CLLocationManager. But mapview only displayed. I sent custom lat,long. But this lat,long can't displayed in map.
Code:
- ...
0
votes
2answers
87 views
How to delay the prompt for location services permission
In my app I'm using CLLocationManager and MKMapView. When app launches, I present the user with a disclaimer (once) which has to be accepted. However, when the disclaimer is shown, a popup appears ...
0
votes
1answer
216 views
angle between two point coordinates to rotate image accordingly
I have two points of CLLocationCoordinate2D, let's say A & B on my mapView. I would like an arrow-image to point from one point to another (A->B). I am unable to find the right angle to transform ...
0
votes
0answers
92 views
Why is location services not working as background task?
In my app there is a location (area) to be watched. When the device is moved away from that location (it could be a distance as small as 5 - 10 meters) an AlertView pops up and a sound is played. When ...
0
votes
1answer
55 views
How to get the managed object from selected annotation
I have a model: Event, I have loaded the annotation view to the mapview, but how do I get the event managed object from the selected annotation, so I can push a view controller to display event's ...
1
vote
3answers
117 views
MKMapView Loads before LocationManager has got user location - cannot set Region to center on user location
I have an iOS app where Im loading a MKMapView as the app starts. I want to set the center of the "MKCoordinateRegion" to be the user latitude/longitude. However, the CLLocation Manager instance does ...
0
votes
1answer
76 views
can't Find location within milesof using stackmob as backend
I am trying to find the locations, but I am getting a empty array returned. It succeeded, but got nothing back. In the object brower, i can say there are values in the "location". I have saved several ...
0
votes
1answer
40 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 ...
0
votes
1answer
53 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 ...
0
votes
1answer
133 views
MKMapview without cell/wifi connections not showing correctly on the device
#define LOCATION_DISTANCE 80.4672
- (void)viewDidLoad
{
[super viewDidLoad];
....some computation
locationManager = [[CLLocationManager alloc] init];
locationManager.delegate = ...
2
votes
2answers
243 views
CLLocationManager tracks wrong Location (Track Me)
I am implementing Track me option in my code.CLLocationManager is not working as expected.when I start app remain at the same position ,CLLocationManager changes around 20-30 meters with-in 1 min ...
1
vote
0answers
71 views
How to whether the UserLocation is inside a MKPolygonview or particular region in iOS MKMapView?
I need to check whether the current user location is inside a particular region, here I use a MKPolygonView.I had added a route in my MKMapView and I want to check whether the user is in that ...
0
votes
1answer
69 views
Having trouble zooming and centering on users location in MapView in iOS
I am trying to display a map that simply captures the users latitude and longitude coordinates, and then zoom in to the user on a map. I am able to capture the user's coordinates, but I am unable to ...
1
vote
2answers
103 views
CLLocationManager/MKMapView with external GPS
I've had reports from multiple users saying that their external GPS units (Bad Elf, mostly) aren't working with my GPS-enabled app. I'm not doing any manually detection for GPS units; the app assumes ...
0
votes
1answer
72 views
why CLLocationManager always returns true?
I am using [CLLocationManager locationServicesEnabled] function to get the status whether location service is enabled or not. I kept code in viewDidLoad method.
if(![CLLocationManager ...
0
votes
1answer
87 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.
...
2
votes
3answers
238 views
How to detect user selects Don't Allow for MKMapView for iphone
I have created a application which uses mapview. For maps I used MKMapKit library. Everything works fine when user selects "Allow" button on alert window. But I want to detect when user selects "Don't ...
0
votes
1answer
54 views
Lock and then Unlock Code for a while
I am using CLLocationManager and CLLocationManagerDelegate to find out user location coordinates. I would like to make sure that I have got my coordinate first and then resume the rest of code.
How ...
0
votes
1answer
52 views
how to get current location as i slide the MapView?
I am using CLLocationManager to retrieve current location in my app and display using MapView, i want to slide the map so that the current location should also change to the new location where the map ...
0
votes
1answer
278 views
MKMapView in reverse, when compass mode using in my iphone app project
I am developing an iphone application,in that app i am showing the client Parking places in different locations on MKMapView. Now I need to use compass mode in MKMapView to show the client parking ...
1
vote
2answers
426 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 ...
1
vote
1answer
997 views
Geofencing iOS 6
I was creating an app that tells the user whether they are near the destination.
I was calculating the distance between the currentLocation and the destination. I was doing the calculation inside the ...
0
votes
0answers
144 views
locationManager, overlays and annotations -xcode/ iOS
I have an app which uses location manager to update its location. This location has 2 overlays but both have a center with the location manager pin. But because the location manager (current location) ...
0
votes
1answer
113 views
Is it possible with Local Notification to trace the GPS(latitude and longitude) of specific Place?
Using LocalNotification can we trace the particular Location and when we enter in that area i should get the Notification?
1
vote
1answer
143 views
How to restrict map zoom leave to city level using MKMapView in iphone sdk
can any one help, how can we restrict map view zoom level to city leavel(user need not enter to the street level while zooming the mapview) ..
here is following code m using to set the zoom level...
...
0
votes
1answer
101 views
CLLocationManager - loading MKAnnotation after Location Services Prompt
I have an application that needs to detect the users location an drop some MKAnnotations around it on the MKMapView. How can I get notified about wether the user has selected YES on the Location ...
0
votes
5answers
2k views
CLLocationManager startUpdatingLocation not working
So now I'm at least getting callbacks with the following code...
- (void)viewDidLoad {
[super viewDidLoad];
mapView=[[MKMapView alloc] initWithFrame:self.view.frame];
...
0
votes
1answer
405 views
Unable to assign a CLLocationCoordinate2D to another CLLocationCoordinate2D
I am getting the following error:
Assigning to 'CLLocationCoordinate2D *' from incompatible type 'CLLocationCoordinate2D'; take the address with &
At the following line below:
...
1
vote
2answers
558 views
Location Service indicator on status bar still appears even after explicitly called stopUpdatingLocation on CLLocationManager
I have a view with has a subview of map view. I used CLLocationManager to get the current location and show on the map. Then when the view is about to be closed, I do the following
_mapView.delegate ...
0
votes
0answers
43 views
how to connect mkannotations with arrow lines
I am trying to connect mkannotations with arrows.
But I am not sure how I should approach this.
Can anyone please give me some directions or hints about this? thank you!
if this kind of question was ...
3
votes
3answers
1k views
iOS iPhone show user direction and orientation in space like the compass app on MKMapView
When the compass app uses a map view to display it's location, there's a little cone that displays the direction in which the phone is pointing. However, I was unable to reproduce it using MKMapView ...
1
vote
1answer
247 views
How to get the Lat & Long value of nearest 100 meters location to the current location
I need to get the lat and long values of nearest 100 meters location in any direction to the current location, here is my code,
CLLocationCoordinate2D annotationCenter;
double ms = 100;
double ...
2
votes
1answer
982 views
Extending MKPolylines or create multiple MKPolylines?
I am writing an iOS 5 app which tracks a user's location in real-time, plotting their course on a MKMapView. Whenever a GPS reading is taken I would like a polyline to be drawn between the current and ...
1
vote
1answer
573 views
Issue with zooming MapView using current location
I am showing a map view on front page of my application, I set the region and coords from current location using CLLocation.
When the application is run, a blue screen is being displayed on the ...
1
vote
1answer
244 views
Calculating routes with multiple pins
In my application I have a mapView with several custom pins.
I'm trying to do this: On the showCallout an AlertView appears and tells if you want to calculate the route. This works but just for one ...
3
votes
3answers
3k views
iOS - MKMapView place annotation by using address instead of lat / long
I am able to place annotations on my MKMapView by using latitude and longitude, however, my feed coming in that I need to use location for is using street addresses instead of Lat and Long. e.g 1234 ...
0
votes
2answers
1k views
Geolocation with local notification like reminder
i want implement geolocation notification like the app reminders.
this is what i have already done:
in App delegate:
self.locationManager = [[[CLLocationManager alloc] init] autorelease]; /* don't ...
0
votes
2answers
295 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 ...
1
vote
2answers
1k views
iOS: Difference between the location I get from CLLocationManager and MKMapView's userLocation property
I have two view controllers: tweetViewController and MapViewController. The former is for user to post a tweet, and in it I use CLLocationManager to get user's location. Once ...
0
votes
2answers
263 views
Can't set CLLocationManager delegate to nil
Because there are multiple situations in which I would want to pop a view controller from the navigation stack, I have one method that does it and it is called from three different places.
- ...
3
votes
2answers
611 views
MKOverlay update flashing
In my app, I use an MKPolyline to track the user's path. Sometimes (and not all the time, which I don't understand), when a new line segment gets added to the map, the entire line flashes. Sometimes ...
0
votes
2answers
239 views
How To Get Google Maps link From Current location?
I need to get the google maps link by pressing a button from the iPhone.
I already know how to get the coordinate long/lang. Now I need to convert it to a link.
I am working with CLLocation & ...
3
votes
2answers
3k views
Get user current location on MKMapView
I am trying to get the user current latest location on the didUpdateToLocation:newLocation:fromLocation:oldLocation: method and store it in my ivar CLLocation *userCurrentLocation
I get this error ...
2
votes
2answers
990 views
difference between desiredAccuracy and distanceFilter
Sorry for being a noob here. I am not able to clearly differentiate between CLLocationManager's properties distanceFilter and desiredAccuracy.
If I want my application to give different coordinates ...
1
vote
1answer
402 views
Navigate user to location using maps app
I have a mapview with many annotations on it. When the user clicks on an annotation, it takes them to a details page with information about an artpiece there and a button to "Get directions to this ...
2
votes
1answer
172 views
How do I test if a CLLocationCoordinate2D is visible in the current MKMapView?
I have many pins on my map and I want to animate the callout for the most visible pin. How can I check to see if the CLLocationCoordinate2D of a pin is visible or closest to the center?
2
votes
2answers
946 views
CLLocationManager didUpdateToLocation versus MKMapView's didUpdateUserLocation
I get the user's location from both CLLocationManager and MKMapView. Which one should I use to set the Map's center coordinate?
Also, the two methods in the simulator differ in their answers. The ...


