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.
2 parents 86bbddc + 929e70a commit f9d7888Copy full SHA for f9d7888
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) => {
@@ -270,7 +271,8 @@ Map.propTypes = {
270
271
keyboardShortcuts: T.bool,
272
disableDoubleClickZoom: T.bool,
273
noClear: T.bool,
- styles: T.array
274
+ styles: T.array,
275
+ gestureHandling: T.string
276
}
277
278
evtNames.forEach(e => Map.propTypes[camelize(e)] = T.func)
0 commit comments