Update docs GoogleMaps -> GoogleMap

This commit is contained in:
Guille 2016-06-03 11:34:15 +02:00
parent d715d6a118
commit 82cfe33d86

View File

@ -38,12 +38,12 @@ export const GoogleMapsAnimation = {
* @description This plugin uses the native Google Maps SDK
* @usage
* ```
* import {GoogleMaps, GoogleMapsEvent} from 'ionic-native';
* import {GoogleMap, GoogleMapsEvent} from 'ionic-native';
*
* ...
*
* // 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!"));
* ```