Android-maps-utils: Build with the new listeners

Created on 4 Aug 2016  路  5Comments  路  Source: googlemaps/android-maps-utils

Thank you for the amazing project.

Using compile 'com.google.maps.android:android-maps-utils:0.4.3' does not provide yet the new camera listeners. How could I use them? I have tried jitpack.io but it did not worked either.

Thank you in advance.

Most helpful comment

Just released 0.4.4

All 5 comments

I had the same problem and I think I cracked it.. try this:

map.setOnCameraIdleListener(new GoogleMap.OnCameraIdleListener()
  {
            @Override
            public void onCameraIdle()
            {
                clusterManager.onCameraChange(map.getCameraPosition());
            }
  });

That's one of the examples that is working for me :)

Just to be clear, the new listeners have been added to the code base, but we're yet to push a new release, which will happen soon.

Thanks @stephenmcd, looking forward to the release. Cheers!

Thanks @stephenmcd.

Just released 0.4.4

Was this page helpful?
0 / 5 - 0 ratings

Related issues

bedzinsa picture bedzinsa  路  7Comments

syedalibumpin picture syedalibumpin  路  5Comments

WeiLinJoe picture WeiLinJoe  路  4Comments

Ricardo1980 picture Ricardo1980  路  7Comments

Slake07 picture Slake07  路  3Comments