I’m developing an Android app that is supposed to use Google Maps v2.
Now i’m stuck at finding when zoom level of map has changed.
Can anyone help me?Thanks in advance.
I’m developing an Android app that is supposed to use Google Maps v2. Now
Share
Create an implementation of
OnCameraChangeListener, and pass an instance of it tosetOnCameraChangeListener()of yourGoogleMap. Your listener should be called withonCameraChange()whenever the user changes the zoom, center, or tilt. You find out the new zoom level from theCameraPositionobject that you are passed.