Update google.maps.d.ts

fix indentation
update MapOptions interface
This commit is contained in:
Pavel Hlobil
2016-04-01 20:43:35 -04:00
parent e8f8e7471b
commit e626d8edbf

View File

@@ -30,7 +30,8 @@ THE SOFTWARE.
declare namespace google.maps {
/***** Map *****/
export class Map extends MVCObject {
constructor(mapDiv: Element, opts?: MapOptions);fitBounds(bounds: LatLngBounds): void;
constructor(mapDiv: Element, opts?: MapOptions);
fitBounds(bounds: LatLngBounds): void;
getBounds(): LatLngBounds;
getCenter(): LatLng;
getDiv(): Element;
@@ -58,7 +59,7 @@ declare namespace google.maps {
export interface MapOptions {
backgroundColor?: string;
center?: LatLng;
center?: LatLng|LatLngLiteral;
disableDefaultUI?: boolean;
disableDoubleClickZoom?: boolean;
draggable?: boolean;