From 6b18c3d0614db1f525aaecfb9e09067537061ba9 Mon Sep 17 00:00:00 2001 From: capc0 Date: Sat, 23 Jan 2021 18:16:34 +0100 Subject: [PATCH] fix(launch-navigator): enableGeolocation and enableGeocoding typings (#3584) based of https://github.com/dpa99c/phonegap-launch-navigator/blob/master/uk.co.workingedge.phonegap.plugin.launchnavigator.d.ts Co-authored-by: Daniel Sogl --- src/@ionic-native/plugins/launch-navigator/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/@ionic-native/plugins/launch-navigator/index.ts b/src/@ionic-native/plugins/launch-navigator/index.ts index f4cb78d673..6c3966c9c1 100644 --- a/src/@ionic-native/plugins/launch-navigator/index.ts +++ b/src/@ionic-native/plugins/launch-navigator/index.ts @@ -168,12 +168,12 @@ export interface LaunchNavigatorOptions { launchModeAppleMaps?: string; /** - * If true, and input location type(s) doesn't match those required by the app, use geocoding to obtain the address/coords as required. Defaults to true. + * (Windows only) If false, the plugin will NOT attempt to use the geolocation plugin to determine the current device position when the start location parameter is omitted. Defaults to true. */ enableGeolocation?: boolean; /** - * If true, and input location type(s) doesn't match those required by the app, use geocoding to obtain the address/coords as required. Defaults to true. + * (Android and iOS only) If true, and input location type(s) doesn't match those required by the app, use geocoding to obtain the address/coords as required. Defaults to true. */ enableGeocoding?: boolean;