Launch Navigator
Requires Cordova plugin: uk.co.workingedge.phonegap.plugin.launchnavigator. For more info, please see the LaunchNavigator plugin docs.
Cordovaの問題で困っていますか?

本格的なプロジェクトを構築している場合、トラブルシューティングに時間を費やす余裕はありません。Ionicのエキスパートが、保守、サポート、統合に関する公式サポートを提供しています。
インストール
Ionic Native Enterprise はIonic Teamが完全にサポートしメンテナンスしているプラグインを利用できます。 詳しくみる か、 エンタープライズプラグインに興味があれば 連絡ください
サポートしているプラットフォーム
- Android
- iOS
- Windows
- Windows Phone 8
利用方法
React
Angular
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)
);