Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have two variables - Destination and Source - and, using Phonegap, I'm trying to use jQuery to open the external iPhone Apple Maps app with directions.

The code I'm using looks like this:

var url = 'http://maps.apple.com/?q=daddr='+destination+'&saddr='+source;
window.location = url;

Whenever I click the relevant button however, it opens a new view in-app with Google directions as a webview, and I cannot return to the original app.

How can link be opened instead with the iOS default map application?

share|improve this question
You might want to take a look at stackoverflow.com/questions/12504294/… – Iain Collins Jan 24 at 15:01
I saw that but unfortunately I'm coding with Phonegap in HTML and Javascript so Objective-C isn't the language I'm using to compile - but I've found the solution I needed, thanks for your help! – Ben Pearl Kahan Jan 24 at 15:28
@BenPearlKahan I have the same problem, can you show me your soluction? Thanks – kongkea Feb 15 at 1:12

1 Answer

up vote 5 down vote accepted

Changing http://maps.apple.com/?q= to just maps: did the trick.

share|improve this answer
Ah-hah! I was wondering if there was something just like that (a specific protocol handler) but hadn't found any documentation - didn't think to just try that! Thanks for posting that. – Iain Collins Jan 24 at 15:30
Pleasure - was a relief to figure it out! – Ben Pearl Kahan Jan 24 at 15:36
Interesting how this is in direct contradiction to Apple's documentation: developer.apple.com/library/ios/#featuredarticles/… but this answer is what works! – David Boike Mar 26 at 21:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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