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 f73e774 commit 4a92a42Copy full SHA for 4a92a42
API.md
@@ -126,6 +126,8 @@ Default: false
126
127
#### onZoomAnimationStart (func)
128
129
+#### onDrag ((map) => void)
130
+
131
#### onZoomAnimationEnd (func)
132
133
#### onMapTypeIdChange (func)
src/google_map.js
@@ -770,7 +770,7 @@ export default class GoogleMap extends Component {
770
771
maps.event.addListener(map, 'drag', () => {
772
this_.dragTime_ = new Date().getTime();
773
- this_._onDrag();
+ this_._onDrag(map);
774
});
775
// user choosing satellite vs roads, etc
776
maps.event.addListener(map, 'maptypeid_changed', () => {
0 commit comments