You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 9, 2022. It is now read-only.
This open-source library for marker clustering that has a beautiful 3D Pie chart and also bar chart for clustering which can useful for statistical regions.
5
+
A Google Maps Android library to render marker clusters as charts categorized on map with specified values.
6
+
Available Charts: [Pie Chart](#pie-chart), [Bar Chart](#bar-chart) and [Donut Chart](#donut-chart)
13
7
8
+

14
9
15
-
-**Display 3D pie chart for clustering**
16
-
-**Display Bar chart for clustering**
10
+
## Installation
17
11
18
-

12
+
1. Make sure you have JCenter in your repository list:
13
+
```groovy
14
+
repositories {
15
+
jcenter()
16
+
}
17
+
```
18
+
2. Add a dependency to your build.gradle:
19
+
```groovy
20
+
dependencies {
21
+
compile ''
22
+
}
23
+
```
19
24
25
+
## Usage
20
26
21
-
### Usage
27
+
This library is a wrapper around "[Google Maps Android API utility library](https://github.com/googlemaps/android-maps-utils)". So you need to implement `com.google.maps.android:android-maps-utils:0.5+` and `com.google.android.gms:play-services-maps:16.1.0` in your build dependencies.
22
28
23
-
First add jitpack to your projects build.gradle file
29
+
Before using this library, please read the "[Google Maps Android API utility library documentation](https://developers.google.com/maps/documentation/android-sdk/utility/)" .
30
+
31
+
### Marker
32
+
33
+
Firstly, you need to generate markers that have a name.
34
+
You must initialize `CMaker` class that is implemented `ClusterItem` and pass the LarLng, the name of marker and the drawable Id. Also you can set the title and snippet of marker.
0 commit comments