I know it's possible to start the iPhone maps application by calling openURL on a google maps URL with parameters saddr and daddr with location strings or LatLong (see example below).

But I'm wondering if it's possible to make the start address be the "Current Location" maps bookmark so that I can use the maps app's location handling code. My Google search has been pretty fruitless.

For example:

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NSString stringWithFormat: @"http://maps.google.com/maps?saddr=%@&daddr=%@", myLatLong, latlong]]];

Except with something to invoke the current location bookmark in place of myLatLong.

link|improve this question
I'm trying to do this same exact functionality and I have maps loading just fine with the destination however when I load google maps it gives me the last known GPS reading, even if it's hours or days out of date. Sometimes it gives me location readings that are a mile or more off... How do I get accurate Current Location readings? Am I missing something with CoreLocation's accuracy? thx – salomoko Jan 22 '11 at 14:00
feedback

5 Answers

You need to use Core Location to get the current location, but with that lat/long pair, you can get Maps to route you from there, to a street address. Like so:


   CLLocationCoordinate2D currentLocation = [self getCurrentLocation];
   NSString* address = @"123 Main St., New York, NY, 10001";
   NSString* url = [NSString stringWithFormat: @"http://maps.google.com/maps?saddr=%f,%f&daddr=%@",
                    currentLocation.latitude, currentLocation.longitude,
                    [address stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
   [[UIApplication sharedApplication] openURL: [NSURL URLWithString: url]];
link|improve this answer
2  
This is more complicated than necessary. See the answer by @bob below where you pass "Current+Location" as a parameter – Willster Feb 13 '11 at 18:08
1  
@Willster: If someone can figure out how to get Current Location to work as a param on iPad, I'm sold!! – Joe D'Andrea Mar 13 '11 at 15:10
2  
Actually, Willster .. it's not more complicated than necessary. Look at the date of this thread. There was no OS 4.0. On 3.x, you needed to pass in the coordinates. As Joe alludes to, you've still got plenty of iPads still on 3.2, not to mention iPod Touches, or iPhones where users just don't get around to upgrading. Plus, there's the issue of localization. If the user's not using English, Current+Location doesn't work. So, if you want your solution to be robust, you need to pass the coordinates. – Nate Mar 20 '11 at 20:32
See stackoverflow.com/questions/4590972/… for the part about localization. – Nate Mar 20 '11 at 20:35
"Y'know, I think I've learned something today." Embrace the coordinates. :) – Joe D'Andrea Apr 27 '11 at 15:14
show 2 more comments
feedback
NSString* addr = [NSString stringWithFormat:@"http://maps.google.com/maps?daddr=Current Location&saddr=%@",startAddr];
NSURL* url = [[NSURL alloc] initWithString:[addr stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
[[UIApplication sharedApplication] openURL:url];
[url release];

This works but only when the iPhone/iPod language is set in English. If you want to support other languages you'll have to use a localized string to match the Maps bookmark name.

link|improve this answer
1  
Works for me on iPhone but not on iPad. In the latter case I end up starting at Current, MO. :( – Joe D'Andrea Mar 13 '11 at 15:09
I don't have an iPad to test that, but what is the name of the bookmark for current position in iPad Map app ? – Tchettane Apr 26 '11 at 7:49
In US English (at least), it shows up as "Current Location" ... unless that is already set as a start/endpoint ... then it is absent from the bookmark list. – Joe D'Andrea Apr 27 '11 at 15:13
What a shame we need to translate it ...I am sure there is a special code, but which ... – Thomas Decaux Apr 4 at 12:10
feedback

This works on iPhone:

http://maps.google.com/maps?saddr=Current Location&daddr=123 Main St,Ottawa,ON

link|improve this answer
You have to encode the spaces, but yes, this works. see here: stackoverflow.com/questions/4590972/… – Jerph Feb 2 '11 at 23:29
1  
Works very well on iPhone! On iPad I manage to land on - I kid you not - Current, MO. :-o – Joe D'Andrea Feb 27 '11 at 0:42
this doesn't work. i just tried on my iphone (4.2.6). docs say it ought to, but it doesn't – JohnO Dec 14 '11 at 19:22
Use "Current+Location" instead. Worked for me. – nevan king 2 days ago
feedback

Because of sandboxing, you don't have access to the Map application's bookmarks.

Instead, use Core Location to determine the current location yourself. Then use that location (the lat and long) in the URL you build to open Maps.

link|improve this answer
2  
I can't see how sandboxing would be relevant to asking Maps to use the Current Location. This is a nonsense answer. – grahamparks Jan 8 '10 at 10:40
2  
I believe the answer refers to the fact that "Current Location" is among the bookmarks in the Maps application, and that apps don't have access to those bookmarks. Not nonsense, just missing that connection. – James J Dec 1 '10 at 2:49
I suspect that using "Current Location" (or the URI-encoded variant) is amounting to a "happy accident" on iPhone/iPod touch only, in that it just happens to work in spite of itself. (That there is I18N to account for is enough to convince me - stick with coordinates!) – Joe D'Andrea Apr 27 '11 at 15:17
feedback

You can do this now in html just from a url on your mobile device only. Here's an example. The cool thing is if you turn this into a qr code you have a way of someone getting directions to you from wherever they are just by scanning it on their phone.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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