We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c70a04f commit 428ca73Copy full SHA for 428ca73
README.md
@@ -103,6 +103,21 @@ const style = {
103
height: '100%'
104
}
105
```
106
+Container Style: Takes CSS style object - optional, commonly when you want to change from the default of position "absolute".
107
+
108
+```javascript
109
+const containerStyle = {
110
+ position: 'relative',
111
+ width: '100%',
112
+ height: '100%'
113
+}
114
+```
115
116
117
+ <Map
118
+ containerStyle={containerStyle}
119
120
121
initalCenter: Takes an object containing latitude and longitude coordinates. Sets the maps center upon loading.
122
123
```javascript
0 commit comments