I am looking for a way to receive events when a map finished panning or zooming or panning and zooming. Those events are not fired, afaik, from MapActivity
in the SDK for Android 2.3.3 which I use. I tried the MapChange library, however, it forces you to use Handler
in your MapActivity
to ensure to that UI updates are processed on the UI thread; more information.
Question: Do you know of any support for such events by the Android Support Library e.g. by using FragmentActivity
instead of MapActivity
- I could not find an alternative solution by now.
Similar questions can be found here:
Edit: The MapChange library was updated some hours ago. I will check out what has been improved.
Edit: The MapChange library has been improved and works much more reliable now and is a good option! Please checkout the GitHub project for further information. However, I leave the question open since I am still interested whether one can do the same with existing components.