I am trying to implement Huawei Map Kit to my android project. As you know google provides cluster manager to group many items on a map based on zoom level. How can I implement same feature in Huawei Map?
What is the equivalent of the cluster manager feature used in Google map on Huawei Map?
847 Views Asked by Alize Dronna At
3
There are 3 best solutions below
2

This is the documentation about Huawei Map Kit Clustering Markers. You can also refer to sample code provided by @deadfish.
I’d like to add a useful tool, which is based on Google's open-source tool and adapts to the Huawei Map cluster manager. You are advised to integrate the tool to cluster markers.
Usage:
- Open Gradle, click library->Tasks->build->assemble.
- After Run, find 3rd-maps-utils-2.1.0-yyyyMMdd.aar file from Github in library/build/outputs/aar/ path.
- Copy 3rd-maps-utils-2.1.0-yyyyMMdd.aar file to your own app/libs/ path.
- Add codes below in project build.gradle file.
allprojects {
repositories {
...
flatDir {
dirs 'libs'
}
}
}
- Add codes below in app build.gradle file.
dependencies {
implementation(name: '3rd-maps-utils-2.1.0-yyyyMMdd', ext: 'aar')
...
}
UPDATE
Take a look at the example. Is that what you are looking for?