├── .gitignore ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── mapboxclustering │ │ └── maroof │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── mapboxclustering │ │ │ └── maroof │ │ │ ├── MainActivity.java │ │ │ ├── MyApplication.java │ │ │ └── model │ │ │ └── POICluster.java │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── ic_launcher_background.xml │ │ ├── pin_blue.png │ │ ├── pin_purple.png │ │ └── pin_red.png │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── mapboxclustering │ └── maroof │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── plugin-cluster ├── CHANGELOG.md ├── README.md ├── build.gradle ├── build │ ├── generated │ │ └── source │ │ │ ├── buildConfig │ │ │ └── debug │ │ │ │ └── com │ │ │ │ └── mapbox │ │ │ │ └── mapboxsdk │ │ │ │ └── plugins │ │ │ │ └── cluster │ │ │ │ └── BuildConfig.java │ │ │ └── r │ │ │ └── debug │ │ │ ├── android │ │ │ ├── arch │ │ │ │ ├── core │ │ │ │ │ └── R.java │ │ │ │ └── lifecycle │ │ │ │ │ ├── R.java │ │ │ │ │ ├── livedata │ │ │ │ │ └── core │ │ │ │ │ │ └── R.java │ │ │ │ │ └── viewmodel │ │ │ │ │ └── R.java │ │ │ └── support │ │ │ │ ├── compat │ │ │ │ └── R.java │ │ │ │ ├── coreui │ │ │ │ └── R.java │ │ │ │ ├── coreutils │ │ │ │ └── R.java │ │ │ │ ├── fragment │ │ │ │ └── R.java │ │ │ │ ├── graphics │ │ │ │ └── drawable │ │ │ │ │ ├── R.java │ │ │ │ │ └── animated │ │ │ │ │ └── R.java │ │ │ │ └── v7 │ │ │ │ └── appcompat │ │ │ │ └── R.java │ │ │ ├── com │ │ │ └── mapbox │ │ │ │ ├── mapboxsdk │ │ │ │ ├── R.java │ │ │ │ └── plugins │ │ │ │ │ └── cluster │ │ │ │ │ └── R.java │ │ │ │ └── services │ │ │ │ └── android │ │ │ │ └── telemetry │ │ │ │ └── R.java │ │ │ └── timber │ │ │ └── log │ │ │ └── R.java │ ├── intermediates │ │ ├── attr │ │ │ └── R.txt │ │ ├── incremental │ │ │ ├── compileDebugAidl │ │ │ │ └── dependency.store │ │ │ └── packageDebugResources │ │ │ │ ├── compile-file-map.properties │ │ │ │ ├── merged.dir │ │ │ │ └── values │ │ │ │ │ └── values.xml │ │ │ │ └── merger.xml │ │ ├── manifests │ │ │ ├── aapt │ │ │ │ └── debug │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ └── output.json │ │ │ └── full │ │ │ │ └── debug │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── output.json │ │ ├── packaged_res │ │ │ └── debug │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ ├── mbx_bubble_mask.9.png │ │ │ │ └── mbx_bubble_shadow.9.png │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ ├── mbx_bubble_mask.9.png │ │ │ │ └── mbx_bubble_shadow.9.png │ │ │ │ ├── layout │ │ │ │ ├── mbx_info_window.xml │ │ │ │ ├── mbx_text_bubble.xml │ │ │ │ └── mbx_webview.xml │ │ │ │ ├── raw │ │ │ │ ├── mbx_ballon_gx_prefix.kml │ │ │ │ ├── mbx_basic_folder.kml │ │ │ │ ├── mbx_basic_placemark.kml │ │ │ │ ├── mbx_cdata.kml │ │ │ │ ├── mbx_default_balloon.kml │ │ │ │ ├── mbx_document_nest.kml │ │ │ │ ├── mbx_draw_order_ground_overlay.kml │ │ │ │ ├── mbx_extended_data.kml │ │ │ │ ├── mbx_ground_overlay.kml │ │ │ │ ├── mbx_ground_overlay_color.kml │ │ │ │ ├── mbx_inline_style.kml │ │ │ │ ├── mbx_multigeometry_placemarks.kml │ │ │ │ ├── mbx_multiple_placemarks.kml │ │ │ │ ├── mbx_nested_folders.kml │ │ │ │ ├── mbx_nested_multigeometry.kml │ │ │ │ ├── mbx_poly_style_boolean_alpha.kml │ │ │ │ ├── mbx_poly_style_boolean_numeric.kml │ │ │ │ ├── mbx_unknwown_folder.kml │ │ │ │ ├── mbx_unsupported.kml │ │ │ │ └── mbx_visibility_ground_overlay.kml │ │ │ │ └── values │ │ │ │ └── values.xml │ │ ├── res │ │ │ └── symbol-table-with-package │ │ │ │ └── debug │ │ │ │ └── package-aware-r.txt │ │ └── symbols │ │ │ └── debug │ │ │ └── R.txt │ └── outputs │ │ └── logs │ │ └── manifest-merger-debug-report.txt ├── gradle.properties ├── javadoc.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── mapbox │ │ └── mapboxsdk │ │ └── plugins │ │ └── cluster │ │ ├── MarkerManager.java │ │ ├── clustering │ │ ├── Cluster.java │ │ ├── ClusterItem.java │ │ ├── ClusterManagerPlugin.java │ │ ├── algo │ │ │ ├── Algorithm.java │ │ │ ├── GridBasedAlgorithm.java │ │ │ ├── NonHierarchicalDistanceBasedAlgorithm.java │ │ │ ├── PreCachingAlgorithmDecorator.java │ │ │ └── StaticCluster.java │ │ └── view │ │ │ ├── ClusterRenderer.java │ │ │ └── DefaultClusterRenderer.java │ │ ├── data │ │ ├── Geometry.java │ │ └── Point.java │ │ ├── geometry │ │ ├── Bounds.java │ │ └── Point.java │ │ ├── projection │ │ └── SphericalMercatorProjection.java │ │ ├── quadtree │ │ └── PointQuadTree.java │ │ └── ui │ │ ├── BubbleDrawable.java │ │ ├── IconGenerator.java │ │ ├── RotationLayout.java │ │ └── SquareTextView.java │ └── res │ ├── drawable-xhdpi │ ├── mbx_bubble_mask.9.png │ └── mbx_bubble_shadow.9.png │ ├── drawable-xxhdpi │ ├── mbx_bubble_mask.9.png │ └── mbx_bubble_shadow.9.png │ ├── layout │ ├── mbx_info_window.xml │ ├── mbx_text_bubble.xml │ └── mbx_webview.xml │ ├── raw │ ├── mbx_ballon_gx_prefix.kml │ ├── mbx_basic_folder.kml │ ├── mbx_basic_placemark.kml │ ├── mbx_cdata.kml │ ├── mbx_default_balloon.kml │ ├── mbx_document_nest.kml │ ├── mbx_draw_order_ground_overlay.kml │ ├── mbx_extended_data.kml │ ├── mbx_ground_overlay.kml │ ├── mbx_ground_overlay_color.kml │ ├── mbx_inline_style.kml │ ├── mbx_multigeometry_placemarks.kml │ ├── mbx_multiple_placemarks.kml │ ├── mbx_nested_folders.kml │ ├── mbx_nested_multigeometry.kml │ ├── mbx_poly_style_boolean_alpha.kml │ ├── mbx_poly_style_boolean_numeric.kml │ ├── mbx_unknwown_folder.kml │ ├── mbx_unsupported.kml │ └── mbx_visibility_ground_overlay.kml │ └── values │ ├── ids.xml │ ├── strings.xml │ └── styles.xml └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/mapboxclustering/maroof/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/app/src/androidTest/java/com/mapboxclustering/maroof/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/mapboxclustering/maroof/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/app/src/main/java/com/mapboxclustering/maroof/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/mapboxclustering/maroof/MyApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/app/src/main/java/com/mapboxclustering/maroof/MyApplication.java -------------------------------------------------------------------------------- /app/src/main/java/com/mapboxclustering/maroof/model/POICluster.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/app/src/main/java/com/mapboxclustering/maroof/model/POICluster.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/pin_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/app/src/main/res/drawable/pin_blue.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/pin_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/app/src/main/res/drawable/pin_purple.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/pin_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/app/src/main/res/drawable/pin_red.png -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/mapboxclustering/maroof/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/app/src/test/java/com/mapboxclustering/maroof/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/gradlew.bat -------------------------------------------------------------------------------- /plugin-cluster/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/CHANGELOG.md -------------------------------------------------------------------------------- /plugin-cluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/README.md -------------------------------------------------------------------------------- /plugin-cluster/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build.gradle -------------------------------------------------------------------------------- /plugin-cluster/build/generated/source/buildConfig/debug/com/mapbox/mapboxsdk/plugins/cluster/BuildConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/generated/source/buildConfig/debug/com/mapbox/mapboxsdk/plugins/cluster/BuildConfig.java -------------------------------------------------------------------------------- /plugin-cluster/build/generated/source/r/debug/android/arch/core/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/generated/source/r/debug/android/arch/core/R.java -------------------------------------------------------------------------------- /plugin-cluster/build/generated/source/r/debug/android/arch/lifecycle/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/generated/source/r/debug/android/arch/lifecycle/R.java -------------------------------------------------------------------------------- /plugin-cluster/build/generated/source/r/debug/android/arch/lifecycle/livedata/core/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/generated/source/r/debug/android/arch/lifecycle/livedata/core/R.java -------------------------------------------------------------------------------- /plugin-cluster/build/generated/source/r/debug/android/arch/lifecycle/viewmodel/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/generated/source/r/debug/android/arch/lifecycle/viewmodel/R.java -------------------------------------------------------------------------------- /plugin-cluster/build/generated/source/r/debug/android/support/compat/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/generated/source/r/debug/android/support/compat/R.java -------------------------------------------------------------------------------- /plugin-cluster/build/generated/source/r/debug/android/support/coreui/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/generated/source/r/debug/android/support/coreui/R.java -------------------------------------------------------------------------------- /plugin-cluster/build/generated/source/r/debug/android/support/coreutils/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/generated/source/r/debug/android/support/coreutils/R.java -------------------------------------------------------------------------------- /plugin-cluster/build/generated/source/r/debug/android/support/fragment/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/generated/source/r/debug/android/support/fragment/R.java -------------------------------------------------------------------------------- /plugin-cluster/build/generated/source/r/debug/android/support/graphics/drawable/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/generated/source/r/debug/android/support/graphics/drawable/R.java -------------------------------------------------------------------------------- /plugin-cluster/build/generated/source/r/debug/android/support/graphics/drawable/animated/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/generated/source/r/debug/android/support/graphics/drawable/animated/R.java -------------------------------------------------------------------------------- /plugin-cluster/build/generated/source/r/debug/android/support/v7/appcompat/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/generated/source/r/debug/android/support/v7/appcompat/R.java -------------------------------------------------------------------------------- /plugin-cluster/build/generated/source/r/debug/com/mapbox/mapboxsdk/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/generated/source/r/debug/com/mapbox/mapboxsdk/R.java -------------------------------------------------------------------------------- /plugin-cluster/build/generated/source/r/debug/com/mapbox/mapboxsdk/plugins/cluster/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/generated/source/r/debug/com/mapbox/mapboxsdk/plugins/cluster/R.java -------------------------------------------------------------------------------- /plugin-cluster/build/generated/source/r/debug/com/mapbox/services/android/telemetry/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/generated/source/r/debug/com/mapbox/services/android/telemetry/R.java -------------------------------------------------------------------------------- /plugin-cluster/build/generated/source/r/debug/timber/log/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/generated/source/r/debug/timber/log/R.java -------------------------------------------------------------------------------- /plugin-cluster/build/intermediates/attr/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/intermediates/attr/R.txt -------------------------------------------------------------------------------- /plugin-cluster/build/intermediates/incremental/compileDebugAidl/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /plugin-cluster/build/intermediates/incremental/packageDebugResources/compile-file-map.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/intermediates/incremental/packageDebugResources/compile-file-map.properties -------------------------------------------------------------------------------- /plugin-cluster/build/intermediates/incremental/packageDebugResources/merged.dir/values/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/intermediates/incremental/packageDebugResources/merged.dir/values/values.xml -------------------------------------------------------------------------------- /plugin-cluster/build/intermediates/incremental/packageDebugResources/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/intermediates/incremental/packageDebugResources/merger.xml -------------------------------------------------------------------------------- /plugin-cluster/build/intermediates/manifests/aapt/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/intermediates/manifests/aapt/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /plugin-cluster/build/intermediates/manifests/aapt/debug/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/intermediates/manifests/aapt/debug/output.json -------------------------------------------------------------------------------- /plugin-cluster/build/intermediates/manifests/full/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/intermediates/manifests/full/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /plugin-cluster/build/intermediates/manifests/full/debug/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/intermediates/manifests/full/debug/output.json -------------------------------------------------------------------------------- /plugin-cluster/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/mbx_bubble_mask.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/mbx_bubble_mask.9.png -------------------------------------------------------------------------------- /plugin-cluster/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/mbx_bubble_shadow.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/mbx_bubble_shadow.9.png -------------------------------------------------------------------------------- /plugin-cluster/build/intermediates/packaged_res/debug/drawable-xxhdpi-v4/mbx_bubble_mask.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/intermediates/packaged_res/debug/drawable-xxhdpi-v4/mbx_bubble_mask.9.png -------------------------------------------------------------------------------- /plugin-cluster/build/intermediates/packaged_res/debug/drawable-xxhdpi-v4/mbx_bubble_shadow.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/intermediates/packaged_res/debug/drawable-xxhdpi-v4/mbx_bubble_shadow.9.png -------------------------------------------------------------------------------- /plugin-cluster/build/intermediates/packaged_res/debug/layout/mbx_info_window.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/intermediates/packaged_res/debug/layout/mbx_info_window.xml -------------------------------------------------------------------------------- /plugin-cluster/build/intermediates/packaged_res/debug/layout/mbx_text_bubble.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/intermediates/packaged_res/debug/layout/mbx_text_bubble.xml -------------------------------------------------------------------------------- /plugin-cluster/build/intermediates/packaged_res/debug/layout/mbx_webview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/intermediates/packaged_res/debug/layout/mbx_webview.xml -------------------------------------------------------------------------------- /plugin-cluster/build/intermediates/packaged_res/debug/raw/mbx_ballon_gx_prefix.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/intermediates/packaged_res/debug/raw/mbx_ballon_gx_prefix.kml -------------------------------------------------------------------------------- /plugin-cluster/build/intermediates/packaged_res/debug/raw/mbx_basic_folder.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/intermediates/packaged_res/debug/raw/mbx_basic_folder.kml -------------------------------------------------------------------------------- /plugin-cluster/build/intermediates/packaged_res/debug/raw/mbx_basic_placemark.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/intermediates/packaged_res/debug/raw/mbx_basic_placemark.kml -------------------------------------------------------------------------------- /plugin-cluster/build/intermediates/packaged_res/debug/raw/mbx_cdata.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/intermediates/packaged_res/debug/raw/mbx_cdata.kml -------------------------------------------------------------------------------- /plugin-cluster/build/intermediates/packaged_res/debug/raw/mbx_default_balloon.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/intermediates/packaged_res/debug/raw/mbx_default_balloon.kml -------------------------------------------------------------------------------- /plugin-cluster/build/intermediates/packaged_res/debug/raw/mbx_document_nest.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/intermediates/packaged_res/debug/raw/mbx_document_nest.kml -------------------------------------------------------------------------------- /plugin-cluster/build/intermediates/packaged_res/debug/raw/mbx_draw_order_ground_overlay.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/intermediates/packaged_res/debug/raw/mbx_draw_order_ground_overlay.kml -------------------------------------------------------------------------------- /plugin-cluster/build/intermediates/packaged_res/debug/raw/mbx_extended_data.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/intermediates/packaged_res/debug/raw/mbx_extended_data.kml -------------------------------------------------------------------------------- /plugin-cluster/build/intermediates/packaged_res/debug/raw/mbx_ground_overlay.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/intermediates/packaged_res/debug/raw/mbx_ground_overlay.kml -------------------------------------------------------------------------------- /plugin-cluster/build/intermediates/packaged_res/debug/raw/mbx_ground_overlay_color.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/intermediates/packaged_res/debug/raw/mbx_ground_overlay_color.kml -------------------------------------------------------------------------------- /plugin-cluster/build/intermediates/packaged_res/debug/raw/mbx_inline_style.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/intermediates/packaged_res/debug/raw/mbx_inline_style.kml -------------------------------------------------------------------------------- /plugin-cluster/build/intermediates/packaged_res/debug/raw/mbx_multigeometry_placemarks.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/intermediates/packaged_res/debug/raw/mbx_multigeometry_placemarks.kml -------------------------------------------------------------------------------- /plugin-cluster/build/intermediates/packaged_res/debug/raw/mbx_multiple_placemarks.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/intermediates/packaged_res/debug/raw/mbx_multiple_placemarks.kml -------------------------------------------------------------------------------- /plugin-cluster/build/intermediates/packaged_res/debug/raw/mbx_nested_folders.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/intermediates/packaged_res/debug/raw/mbx_nested_folders.kml -------------------------------------------------------------------------------- /plugin-cluster/build/intermediates/packaged_res/debug/raw/mbx_nested_multigeometry.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/intermediates/packaged_res/debug/raw/mbx_nested_multigeometry.kml -------------------------------------------------------------------------------- /plugin-cluster/build/intermediates/packaged_res/debug/raw/mbx_poly_style_boolean_alpha.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/intermediates/packaged_res/debug/raw/mbx_poly_style_boolean_alpha.kml -------------------------------------------------------------------------------- /plugin-cluster/build/intermediates/packaged_res/debug/raw/mbx_poly_style_boolean_numeric.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/intermediates/packaged_res/debug/raw/mbx_poly_style_boolean_numeric.kml -------------------------------------------------------------------------------- /plugin-cluster/build/intermediates/packaged_res/debug/raw/mbx_unknwown_folder.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/intermediates/packaged_res/debug/raw/mbx_unknwown_folder.kml -------------------------------------------------------------------------------- /plugin-cluster/build/intermediates/packaged_res/debug/raw/mbx_unsupported.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/intermediates/packaged_res/debug/raw/mbx_unsupported.kml -------------------------------------------------------------------------------- /plugin-cluster/build/intermediates/packaged_res/debug/raw/mbx_visibility_ground_overlay.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/intermediates/packaged_res/debug/raw/mbx_visibility_ground_overlay.kml -------------------------------------------------------------------------------- /plugin-cluster/build/intermediates/packaged_res/debug/values/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/intermediates/packaged_res/debug/values/values.xml -------------------------------------------------------------------------------- /plugin-cluster/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt -------------------------------------------------------------------------------- /plugin-cluster/build/intermediates/symbols/debug/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/intermediates/symbols/debug/R.txt -------------------------------------------------------------------------------- /plugin-cluster/build/outputs/logs/manifest-merger-debug-report.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/build/outputs/logs/manifest-merger-debug-report.txt -------------------------------------------------------------------------------- /plugin-cluster/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/gradle.properties -------------------------------------------------------------------------------- /plugin-cluster/javadoc.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/javadoc.gradle -------------------------------------------------------------------------------- /plugin-cluster/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /plugin-cluster/src/main/java/com/mapbox/mapboxsdk/plugins/cluster/MarkerManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/java/com/mapbox/mapboxsdk/plugins/cluster/MarkerManager.java -------------------------------------------------------------------------------- /plugin-cluster/src/main/java/com/mapbox/mapboxsdk/plugins/cluster/clustering/Cluster.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/java/com/mapbox/mapboxsdk/plugins/cluster/clustering/Cluster.java -------------------------------------------------------------------------------- /plugin-cluster/src/main/java/com/mapbox/mapboxsdk/plugins/cluster/clustering/ClusterItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/java/com/mapbox/mapboxsdk/plugins/cluster/clustering/ClusterItem.java -------------------------------------------------------------------------------- /plugin-cluster/src/main/java/com/mapbox/mapboxsdk/plugins/cluster/clustering/ClusterManagerPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/java/com/mapbox/mapboxsdk/plugins/cluster/clustering/ClusterManagerPlugin.java -------------------------------------------------------------------------------- /plugin-cluster/src/main/java/com/mapbox/mapboxsdk/plugins/cluster/clustering/algo/Algorithm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/java/com/mapbox/mapboxsdk/plugins/cluster/clustering/algo/Algorithm.java -------------------------------------------------------------------------------- /plugin-cluster/src/main/java/com/mapbox/mapboxsdk/plugins/cluster/clustering/algo/GridBasedAlgorithm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/java/com/mapbox/mapboxsdk/plugins/cluster/clustering/algo/GridBasedAlgorithm.java -------------------------------------------------------------------------------- /plugin-cluster/src/main/java/com/mapbox/mapboxsdk/plugins/cluster/clustering/algo/NonHierarchicalDistanceBasedAlgorithm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/java/com/mapbox/mapboxsdk/plugins/cluster/clustering/algo/NonHierarchicalDistanceBasedAlgorithm.java -------------------------------------------------------------------------------- /plugin-cluster/src/main/java/com/mapbox/mapboxsdk/plugins/cluster/clustering/algo/PreCachingAlgorithmDecorator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/java/com/mapbox/mapboxsdk/plugins/cluster/clustering/algo/PreCachingAlgorithmDecorator.java -------------------------------------------------------------------------------- /plugin-cluster/src/main/java/com/mapbox/mapboxsdk/plugins/cluster/clustering/algo/StaticCluster.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/java/com/mapbox/mapboxsdk/plugins/cluster/clustering/algo/StaticCluster.java -------------------------------------------------------------------------------- /plugin-cluster/src/main/java/com/mapbox/mapboxsdk/plugins/cluster/clustering/view/ClusterRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/java/com/mapbox/mapboxsdk/plugins/cluster/clustering/view/ClusterRenderer.java -------------------------------------------------------------------------------- /plugin-cluster/src/main/java/com/mapbox/mapboxsdk/plugins/cluster/clustering/view/DefaultClusterRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/java/com/mapbox/mapboxsdk/plugins/cluster/clustering/view/DefaultClusterRenderer.java -------------------------------------------------------------------------------- /plugin-cluster/src/main/java/com/mapbox/mapboxsdk/plugins/cluster/data/Geometry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/java/com/mapbox/mapboxsdk/plugins/cluster/data/Geometry.java -------------------------------------------------------------------------------- /plugin-cluster/src/main/java/com/mapbox/mapboxsdk/plugins/cluster/data/Point.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/java/com/mapbox/mapboxsdk/plugins/cluster/data/Point.java -------------------------------------------------------------------------------- /plugin-cluster/src/main/java/com/mapbox/mapboxsdk/plugins/cluster/geometry/Bounds.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/java/com/mapbox/mapboxsdk/plugins/cluster/geometry/Bounds.java -------------------------------------------------------------------------------- /plugin-cluster/src/main/java/com/mapbox/mapboxsdk/plugins/cluster/geometry/Point.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/java/com/mapbox/mapboxsdk/plugins/cluster/geometry/Point.java -------------------------------------------------------------------------------- /plugin-cluster/src/main/java/com/mapbox/mapboxsdk/plugins/cluster/projection/SphericalMercatorProjection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/java/com/mapbox/mapboxsdk/plugins/cluster/projection/SphericalMercatorProjection.java -------------------------------------------------------------------------------- /plugin-cluster/src/main/java/com/mapbox/mapboxsdk/plugins/cluster/quadtree/PointQuadTree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/java/com/mapbox/mapboxsdk/plugins/cluster/quadtree/PointQuadTree.java -------------------------------------------------------------------------------- /plugin-cluster/src/main/java/com/mapbox/mapboxsdk/plugins/cluster/ui/BubbleDrawable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/java/com/mapbox/mapboxsdk/plugins/cluster/ui/BubbleDrawable.java -------------------------------------------------------------------------------- /plugin-cluster/src/main/java/com/mapbox/mapboxsdk/plugins/cluster/ui/IconGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/java/com/mapbox/mapboxsdk/plugins/cluster/ui/IconGenerator.java -------------------------------------------------------------------------------- /plugin-cluster/src/main/java/com/mapbox/mapboxsdk/plugins/cluster/ui/RotationLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/java/com/mapbox/mapboxsdk/plugins/cluster/ui/RotationLayout.java -------------------------------------------------------------------------------- /plugin-cluster/src/main/java/com/mapbox/mapboxsdk/plugins/cluster/ui/SquareTextView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/java/com/mapbox/mapboxsdk/plugins/cluster/ui/SquareTextView.java -------------------------------------------------------------------------------- /plugin-cluster/src/main/res/drawable-xhdpi/mbx_bubble_mask.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/res/drawable-xhdpi/mbx_bubble_mask.9.png -------------------------------------------------------------------------------- /plugin-cluster/src/main/res/drawable-xhdpi/mbx_bubble_shadow.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/res/drawable-xhdpi/mbx_bubble_shadow.9.png -------------------------------------------------------------------------------- /plugin-cluster/src/main/res/drawable-xxhdpi/mbx_bubble_mask.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/res/drawable-xxhdpi/mbx_bubble_mask.9.png -------------------------------------------------------------------------------- /plugin-cluster/src/main/res/drawable-xxhdpi/mbx_bubble_shadow.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/res/drawable-xxhdpi/mbx_bubble_shadow.9.png -------------------------------------------------------------------------------- /plugin-cluster/src/main/res/layout/mbx_info_window.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/res/layout/mbx_info_window.xml -------------------------------------------------------------------------------- /plugin-cluster/src/main/res/layout/mbx_text_bubble.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/res/layout/mbx_text_bubble.xml -------------------------------------------------------------------------------- /plugin-cluster/src/main/res/layout/mbx_webview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/res/layout/mbx_webview.xml -------------------------------------------------------------------------------- /plugin-cluster/src/main/res/raw/mbx_ballon_gx_prefix.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/res/raw/mbx_ballon_gx_prefix.kml -------------------------------------------------------------------------------- /plugin-cluster/src/main/res/raw/mbx_basic_folder.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/res/raw/mbx_basic_folder.kml -------------------------------------------------------------------------------- /plugin-cluster/src/main/res/raw/mbx_basic_placemark.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/res/raw/mbx_basic_placemark.kml -------------------------------------------------------------------------------- /plugin-cluster/src/main/res/raw/mbx_cdata.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/res/raw/mbx_cdata.kml -------------------------------------------------------------------------------- /plugin-cluster/src/main/res/raw/mbx_default_balloon.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/res/raw/mbx_default_balloon.kml -------------------------------------------------------------------------------- /plugin-cluster/src/main/res/raw/mbx_document_nest.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/res/raw/mbx_document_nest.kml -------------------------------------------------------------------------------- /plugin-cluster/src/main/res/raw/mbx_draw_order_ground_overlay.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/res/raw/mbx_draw_order_ground_overlay.kml -------------------------------------------------------------------------------- /plugin-cluster/src/main/res/raw/mbx_extended_data.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/res/raw/mbx_extended_data.kml -------------------------------------------------------------------------------- /plugin-cluster/src/main/res/raw/mbx_ground_overlay.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/res/raw/mbx_ground_overlay.kml -------------------------------------------------------------------------------- /plugin-cluster/src/main/res/raw/mbx_ground_overlay_color.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/res/raw/mbx_ground_overlay_color.kml -------------------------------------------------------------------------------- /plugin-cluster/src/main/res/raw/mbx_inline_style.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/res/raw/mbx_inline_style.kml -------------------------------------------------------------------------------- /plugin-cluster/src/main/res/raw/mbx_multigeometry_placemarks.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/res/raw/mbx_multigeometry_placemarks.kml -------------------------------------------------------------------------------- /plugin-cluster/src/main/res/raw/mbx_multiple_placemarks.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/res/raw/mbx_multiple_placemarks.kml -------------------------------------------------------------------------------- /plugin-cluster/src/main/res/raw/mbx_nested_folders.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/res/raw/mbx_nested_folders.kml -------------------------------------------------------------------------------- /plugin-cluster/src/main/res/raw/mbx_nested_multigeometry.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/res/raw/mbx_nested_multigeometry.kml -------------------------------------------------------------------------------- /plugin-cluster/src/main/res/raw/mbx_poly_style_boolean_alpha.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/res/raw/mbx_poly_style_boolean_alpha.kml -------------------------------------------------------------------------------- /plugin-cluster/src/main/res/raw/mbx_poly_style_boolean_numeric.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/res/raw/mbx_poly_style_boolean_numeric.kml -------------------------------------------------------------------------------- /plugin-cluster/src/main/res/raw/mbx_unknwown_folder.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/res/raw/mbx_unknwown_folder.kml -------------------------------------------------------------------------------- /plugin-cluster/src/main/res/raw/mbx_unsupported.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/res/raw/mbx_unsupported.kml -------------------------------------------------------------------------------- /plugin-cluster/src/main/res/raw/mbx_visibility_ground_overlay.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/res/raw/mbx_visibility_ground_overlay.kml -------------------------------------------------------------------------------- /plugin-cluster/src/main/res/values/ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/res/values/ids.xml -------------------------------------------------------------------------------- /plugin-cluster/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /plugin-cluster/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/plugin-cluster/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaroofAhmedSiddique/MapBoxCustomClustering/HEAD/settings.gradle --------------------------------------------------------------------------------