Custom Marker using Google Maps Android API Utility Library

2.3k Views Asked by At

I'm using Google Maps Android API Utility Library in order to show several markers in a map in a clustered way. I can't find a way to change default red marker to custom marker

Does anybody have any idea about thisenter image description here?

Thanks a lot in advance!

1

There are 1 best solutions below

3
On

In order to change the marker you need to override the onClusterItemRendered method of your custom renderer.

Then change it like this:

  @Override
    protected void onClusterItemRendered(ListingCluster clusterItem, final Marker marker) {
        super.onClusterItemRendered(clusterItem, marker);
        try {
            marker.setIcon(BitmapDescriptorFactory.fromResource(R.drawable.map_marker_detail));
        } catch (Exception e) {
            e.printStackTrace();
        }
    }