I am opening Maps app to show directions from user's Current Location to a destination coordinate, from my code. I am using the following code to open the Maps app. I am calling this code when a button is pressed. getCurrentLocation is a method that returns the recently updated location.

- (void)showDirectionsToHere {

    CLLocationCoordinate2D currentLocation = [self getCurrentLocation];  // LINE 1
    NSString* url = [NSString stringWithFormat: @"http://maps.google.com/maps?saddr=%f,%f&daddr=%f,%f", currentLocation.latitude, currentLocation.longitude, destCoordinate.latitude, destCoordinate.longitude];
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:url]];
}

Here [self getCurrentLocation] in LINE 1 uses CLLocationManager to determine the Current Location and returns the value.

Note: I have not yet implemented the LINE1. I've just planned to do in that way.

My question is,

  1. Is this a good practice to calculate the Current Location, at the time the Maps app is called?
  2. [self getCurrentLocation] will retrun the Current Location before openURL gets called?
  3. I have to determine the Current Location well before opening the Maps app?

I am little bit confused about these things. Kindly guide me. Thanks.

link|improve this question

74% accept rate
feedback

3 Answers

up vote 6 down vote accepted

You don't have to determine the user's current location yourself, the Maps app will take care of it.

Instead of passing a latitude/longitude pair you can pass Current%%20Location and Maps will determine the user's current location itself.

%20 is a url-encoded space character, and the extra % escapes the actual % so it won't be interpreted as a format substitution.


Thanks to @Carlos P for pointing out my escape character blunder in the original answer.

link|improve this answer
Thanks Man.. When I pass the Current%20Location as the saddr. The Maps app is not even opening. [NSString stringWithFormat: @<"maps.google.com/…;, destCoordinate.latitude, destCoordinate.longitude] is the code I am using. – EmptyStack Jan 4 '11 at 6:09
Put the code in your question or put backticks around it in your comment -- it's not readable as-is. I'm positive it works, so it sounds like a syntax issue. – Matthew Frederick Jan 4 '11 at 6:34
Sorry.. The code I am using is [NSString stringWithFormat: @"http://maps.google.com/maps?saddr=Current%20Location&daddr=%f,%f", destCoordinate.latitude, destCoordinate.longitude] – EmptyStack Jan 4 '11 at 6:39
You might have to escape the % character, I don't recall from when I last did it. Use Current\%20Location. If not, then NSLog your url string after the formatting to ensure the rest looks right. – Matthew Frederick Jan 4 '11 at 6:40
1  
@MatthewF and others - I'm confused by these comments, since the correct way to escape a percentage sign is %% unless I'm mistaken. In fact, I've tried \% and it didn't resolve into a percentage sign at all, it produced a random series of digits. So, for future readers may I suggest: maps.google.com/maps?saddr=Current%%20Location&daddr..... – Carlos P Aug 27 '11 at 17:48
show 8 more comments
feedback

Using "Current Location" as saddr only works if the user has the system language set to English. The best options is really to get the current position from Core Location and use that as saddr.

link|improve this answer
Is it? I haven't tested it with other languages. Thanks for your hint. I will take this into consideration. – EmptyStack Feb 9 '11 at 3:49
feedback

As pazustep pointed out, "Current Location" works only for English. In Italian, for example, the correct string is "Posizione attuale".

Sniffing in the iPhone firmware I detected all the "Current Location" translations and I wrote a class that provides the correct string needed for any (currently) supported language.

There's a post about this (source code included) on my blog: http://www.martip.net/blog/localized-current-location-string-for-iphone-apps.

link|improve this answer
Good effort. Thanks man. – EmptyStack May 4 '11 at 12:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.