File tree 2 files changed +6
-5
lines changed
2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -108,6 +108,7 @@ Component to wrap around the code where the map should be available.
108
108
>
109
109
{children}
110
110
< / GoogleMapProvider>
111
+ ```
111
112
112
113
### Properties
113
114
@@ -117,10 +118,10 @@ interface GoogleMapProviderProps {
117
118
googleMapsAPIKey: string ;
118
119
mapContainer? : HTMLElement | null ;
119
120
options: google .maps .MapOptions ;
120
- libraries: string[];
121
- mapIds : string[] ;
122
- language : string;
123
- region : string;
121
+ libraries? : string [];
122
+ language ? : string ;
123
+ region ? : string ;
124
+ mapIds ? : string [] ;
124
125
onLoad? : (map : google .maps .Map ) => void ;
125
126
}
126
127
```
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ export interface GoogleMapProviderProps {
7
7
googleMapsAPIKey : string ;
8
8
mapContainer ?: HTMLElement | null ;
9
9
options : google . maps . MapOptions ;
10
- libraries : string [ ] ;
10
+ libraries ? : string [ ] ;
11
11
language ?: string ;
12
12
region ?: string ;
13
13
mapIds ?: string [ ] ;
You can’t perform that action at this time.
0 commit comments