clusterexpanding
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.bcruts</groupId> <artifactId>clusterexpanding</artifactId> <version>0.0.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>com.github.bcruts</groupId> <artifactId>clusterexpanding</artifactId> <version>0.0.1</version> <packaging>aar</packaging> <name>ClusterExpanding</name> <description>A library that utilizes Google Maps api and Marker Clustering to expand a cluster of markers on the same exact latitude and longitude</description> <url>https://github.com/bcruts/SimpleClusterExpanding</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>bcruts</id> <name>Brian Cruts</name> </developer> </developers> <scm> <connection>scm:git@github.com:bcruts/SimpleClusterExpanding.git</connection> <developerConnection>scm:git@github.com:bcruts/SimpleClusterExpanding.git</developerConnection> <url>https://github.com/bcruts/SimpleClusterExpanding</url> </scm> <dependencies> <dependency> <groupId>com.google.maps.android</groupId> <artifactId>android-maps-utils</artifactId> <version>0.4</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.android.support</groupId> <artifactId>appcompat-v7</artifactId> <version>24.1.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.google.android.gms</groupId> <artifactId>play-services-maps</artifactId> <version>9.2.1</version> <scope>compile</scope> </dependency> </dependencies> </project>