We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 895503e + 5b7a59d commit c70a04fCopy full SHA for c70a04f
index.d.ts
@@ -26,13 +26,19 @@ export interface IProvidedProps {
26
27
type mapEventHandler = (mapProps?: IMapProps, map?: google.maps.Map, event?) => any
28
29
+type Style = Object<string, string | number | boolean>
30
+
31
export interface IMapProps extends google.maps.MapOptions {
32
google: GoogleAPI
33
loaded?: boolean
34
35
+ style?: Style
36
+ containerStyle?: Style
37
38
bounds?: google.maps.LatLngBounds | google.maps.LatLngBoundsLiteral
39
centerAroundCurrentLocation?: boolean
40
initialCenter?: google.maps.LatLngLiteral
41
+ center?: google.maps.LatLngLiteral
42
43
visible?: boolean
44
0 commit comments