Update docs GoogleMaps -> GoogleMap

This commit is contained in:
Guille
2016-06-03 11:34:15 +02:00
parent d715d6a118
commit 82cfe33d86
+2 -2
View File
@@ -38,12 +38,12 @@ export const GoogleMapsAnimation = {
* @description This plugin uses the native Google Maps SDK * @description This plugin uses the native Google Maps SDK
* @usage * @usage
* ``` * ```
* import {GoogleMaps, GoogleMapsEvent} from 'ionic-native'; * import {GoogleMap, GoogleMapsEvent} from 'ionic-native';
* *
* ... * ...
* *
* // somewhere in your component * // somewhere in your component
* let map = new GoogleMaps('elementID'); * let map = new GoogleMap('elementID');
* *
* map.on(GoogleMapsEvent.MAP_READY).subscribe(() => console.log("Map is ready!")); * map.on(GoogleMapsEvent.MAP_READY).subscribe(() => console.log("Map is ready!"));
* ``` * ```