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 b3c27df commit 94fcc3eCopy full SHA for 94fcc3e
src/google_map.js
@@ -715,7 +715,7 @@ export default class GoogleMap extends Component {
715
if (this_.geoService_.getZoom() !== map.getZoom()) {
716
if (!this_.zoomAnimationInProgress_) {
717
this_.zoomAnimationInProgress_ = true;
718
- this_._onZoomAnimationStart();
+ this_._onZoomAnimationStart(map.zoom);
719
}
720
721
// If draw() is not called each frame during a zoom animation,
@@ -762,7 +762,7 @@ export default class GoogleMap extends Component {
762
763
if (this_.zoomAnimationInProgress_) {
764
this_.zoomAnimationInProgress_ = false;
765
- this_._onZoomAnimationEnd();
+ this_._onZoomAnimationEnd(map.zoom);
766
767
768
this_.updateCounter_++;
0 commit comments