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 <mytechde@outlook.com>
This commit is contained in:
capc0 2021-01-23 18:16:34 +01:00 committed by GitHub
parent bd8fbb3e1f
commit 6b18c3d061
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -168,12 +168,12 @@ export interface LaunchNavigatorOptions {
launchModeAppleMaps?: string; 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; 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; enableGeocoding?: boolean;