Skip to content

Commit fd94f64

Browse files
author
Mike Fowler
committed
Add draggableCursor prop
Adds support for the `draggableCursor` property. https://developers.google.com/maps/documentation/javascript/reference/map#MapOptions.draggableCursor
1 parent e9ed46d commit fd94f64

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,7 @@ export class Map extends React.Component {
156156
fullscreenControl: this.props.fullscreenControl,
157157
scrollwheel: this.props.scrollwheel,
158158
draggable: this.props.draggable,
159+
draggableCursor: this.props.draggableCursor,
159160
keyboardShortcuts: this.props.keyboardShortcuts,
160161
disableDoubleClickZoom: this.props.disableDoubleClickZoom,
161162
noClear: this.props.noClear,
@@ -285,6 +286,7 @@ Map.propTypes = {
285286
fullscreenControl: PropTypes.bool,
286287
scrollwheel: PropTypes.bool,
287288
draggable: PropTypes.bool,
289+
draggableCursor: PropTypes.string,
288290
keyboardShortcuts: PropTypes.bool,
289291
disableDoubleClickZoom: PropTypes.bool,
290292
noClear: PropTypes.bool,

0 commit comments

Comments
 (0)