diff --git a/src/plugins/googlemaps.ts b/src/plugins/googlemaps.ts index c4e5131e1..97f48c7a6 100644 --- a/src/plugins/googlemaps.ts +++ b/src/plugins/googlemaps.ts @@ -129,7 +129,7 @@ export class GoogleMap { * @return {Promise} */ @CordovaInstance() - getMyLocation(): Promise { + getMyLocation(options?:MyLocationOptions): Promise { return; } @@ -361,6 +361,13 @@ export interface MyLocation { bearing?: number; } +/** + * @private + */ +export interface MyLocationOptions { + enableHighAccuracy?: boolean; +} + /** * @private */