diff --git a/src/@ionic-native/plugins/google-maps/index.ts b/src/@ionic-native/plugins/google-maps/index.ts index ae0948517..5ecbff71a 100644 --- a/src/@ionic-native/plugins/google-maps/index.ts +++ b/src/@ionic-native/plugins/google-maps/index.ts @@ -524,6 +524,10 @@ export const GoogleMapsMapTypeId: { [mapType: string]: MapType; } = { * map: GoogleMap; * mapElement: HTMLElement; * constructor(private googleMaps: GoogleMaps) { } + * // Load the map when the platform is ready + * this.platform.ready().then(() => { + * this.loadMap(); + * }); * * ionViewDidLoad() { * this.loadMap();