android-maps-utils

IllegalArgumentException: Unmanaged descriptor using gms.maps.model.Marker.setIcon

谁说我不能喝 提交于 2019-11-28 21:02:51
I have an app that use android-maps-utils and glide for marker icons . I got an error report using Firebase crash reporting which I can't track in source code because gms.maps.model.Marker.setIcon is private, so I'm asking for some help with this problem. The follow part of the question is divided into: What the user was doing What firebase crash reported to me Some project configs What I tried/found trying to understand/fix it What the user was doing He was zooming in and out in a map ( Fragment that uses com.google.android.gms.maps.SupportMapFragment ) What firebase crash reported to me

Android cluster and marker clicks

百般思念 提交于 2019-11-27 13:44:04
I'm using the android clustering utility on a map and succesffuly implemented an onclick listener with mClusterManager.setOnClusterItemClickListener() for all the markers handled by the clustering library. Because I also want some markers to always be unclustered, I also add some markers without using the mClusterManager but directly using the map's mMap.addMarker(), this way I'm sure that they are never clustered on the map. My problem is that I cannot intercept clicks on those markers (the always unclustered ones) because I already used mMap.setOnMarkerClickListener(mClusterManager) to

Android cluster and marker clicks

≡放荡痞女 提交于 2019-11-26 16:28:00
问题 I'm using the android clustering utility on a map and succesffuly implemented an onclick listener with mClusterManager.setOnClusterItemClickListener() for all the markers handled by the clustering library. Because I also want some markers to always be unclustered, I also add some markers without using the mClusterManager but directly using the map's mMap.addMarker(), this way I'm sure that they are never clustered on the map. My problem is that I cannot intercept clicks on those markers (the