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 206ac4b commit 929e70aCopy full SHA for 929e70a
src/index.js
@@ -148,7 +148,8 @@ export class Map extends React.Component {
148
keyboardShortcuts: this.props.keyboardShortcuts,
149
disableDoubleClickZoom: this.props.disableDoubleClickZoom,
150
noClear: this.props.noClear,
151
- styles: this.props.styles
+ styles: this.props.styles,
152
+ gestureHandling: this.props.gestureHandling
153
});
154
155
Object.keys(mapConfig).forEach((key) => {
@@ -269,7 +270,8 @@ Map.propTypes = {
269
270
keyboardShortcuts: T.bool,
271
disableDoubleClickZoom: T.bool,
272
noClear: T.bool,
- styles: T.array
273
+ styles: T.array,
274
+ gestureHandling: T.string
275
}
276
277
evtNames.forEach(e => Map.propTypes[camelize(e)] = T.func)
0 commit comments