In our ionic app, we are using @ionic-native/launch-navigator plugin for navigate user to destination address in native map app.
Following navigation code is working fine for previous iOS versions, but not working for iOS 15.
Related code:
import { LaunchNavigator } from '@ionic-native/launch-navigator';
constructor(
private navigator: LaunchNavigator
) { }
public navigate() {
this.navigator.navigate("London, UK")
}
in package.json:
"@ionic-native/launch-navigator": "^5.36.0", "uk.co.workingedge.phonegap.plugin.launchnavigator": "^5.0.6"