From c531114f46ce6e5ca5b42c3965afc5d2edcc4a39 Mon Sep 17 00:00:00 2001 From: Ibrahim Hadeed Date: Wed, 25 May 2016 03:32:05 -0400 Subject: [PATCH] formatting --- src/plugins/googlemaps.ts | 114 +++++++++++++++++++------------------- 1 file changed, 57 insertions(+), 57 deletions(-) diff --git a/src/plugins/googlemaps.ts b/src/plugins/googlemaps.ts index fccbc9b19..b128a55cc 100644 --- a/src/plugins/googlemaps.ts +++ b/src/plugins/googlemaps.ts @@ -210,103 +210,103 @@ export class GoogleMaps { }) setIndoorEnabled (enabled: boolean): void { } -@CordovaInstance({ - sync: true -}) + @CordovaInstance({ + sync: true + }) setTrafficEnabled (enabled: boolean): void { } -@CordovaInstance({ - sync: true -}) + @CordovaInstance({ + sync: true + }) setCompassEnabled (enabled: boolean): void { } -@CordovaInstance({ - sync: true -}) + @CordovaInstance({ + sync: true + }) setAllGesturesEnabled (enabled: boolean): void { } -@CordovaInstance({ - sync: true -}) + @CordovaInstance({ + sync: true + }) addMarker (options: any): void { } -@CordovaInstance({ - sync: true -}) + @CordovaInstance({ + sync: true + }) addCircle (options: any): void { } -@CordovaInstance({ - sync: true -}) + @CordovaInstance({ + sync: true + }) addPolygon (options: any): void { } -@CordovaInstance({ - sync: true -}) + @CordovaInstance({ + sync: true + }) addPolyline (options: any): void { } -@CordovaInstance({ - sync: true -}) + @CordovaInstance({ + sync: true + }) addTileOverlay (options: any): void { } -@CordovaInstance({ - sync: true -}) + @CordovaInstance({ + sync: true + }) addGroundOverlay (options: any): void { } -@CordovaInstance({ - sync: true -}) + @CordovaInstance({ + sync: true + }) setDiv (domNode: HTMLElement): void { } -@CordovaInstance({ - sync: true -}) + @CordovaInstance({ + sync: true + }) setVisible (visible: boolean): void { } -@CordovaInstance({ - sync: true -}) + @CordovaInstance({ + sync: true + }) setOptions (options: any): void { } -@CordovaInstance({ - sync: true -}) + @CordovaInstance({ + sync: true + }) setBackgroundColor (backgroundColor: string): void { } -@CordovaInstance({ - sync: true -}) + @CordovaInstance({ + sync: true + }) setPadding (top?: number, right?: number, bottom?: number, left?: number): void { } -@CordovaInstance({ - sync: true -}) + @CordovaInstance({ + sync: true + }) clear (): void { } -@CordovaInstance({ - sync: true -}) + @CordovaInstance({ + sync: true + }) refreshLayout (): void { } -@CordovaInstance() + @CordovaInstance() fromLatLngToPoint (latLng: GoogleMapsLatLng, point: any): Promise {return; } -@CordovaInstance() + @CordovaInstance() fromPointToLatLng (point: any, latLng: GoogleMapsLatLng): Promise {return; } -@CordovaInstance() + @CordovaInstance() toDataURL (): Promise {return; } -@CordovaInstance({ - sync: true -}) + @CordovaInstance({ + sync: true + }) remove (): void { } -@CordovaInstance({ - sync: true -}) + @CordovaInstance({ + sync: true + }) panBy (): void { } }