Launch Navigator
Requires Cordova plugin: uk.co.workingedge.phonegap.plugin.launchnavigator. For more info, please see the LaunchNavigator plugin docs.
联系我们?

If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic's experts offer official maintenance, support, and integration help.
Ionic Launch Navigator插件的安装(Installation)
Ionic EE comes with fully supported and maintained plugins from the Ionic Team. Learn More or Contact Us
Ionic Launch Navigator插件支持的平台(Supported Platforms)
- Android
- iOS
- Windows
- Windows Phone 8
Ionic Launch Navigator插件的用法(Usage)
Please refer to the plugin's repo for detailed usage. This docs page only explains the Native wrapper.
import { LaunchNavigator, LaunchNavigatorOptions } from '@ionic-native/launch-navigator/ngx';
constructor(private launchNavigator: LaunchNavigator) { }
...
let options: LaunchNavigatorOptions = {
start: 'London, ON',
app: LaunchNavigator.APPS.UBER
}
this.launchNavigator.navigate('Toronto, ON', options)
.then(
success => console.log('Launched navigator'),
error => console.log('Error launching navigator', error)
);