I want to make a button where, when pushed, the user's native gps application opens up with the address already put in for the "to" field.
I can do something similar with the telephone dialer this way:
// ---------------------- CALL SOMEONE! ------------
const callURL:String="tel:6094329861";
var targetURL:URLRequest = new URLRequest(callURL);
navigateToURL(targetURL);
// ------------------------------------------------------