├── .gitignore ├── LICENSE ├── README.md ├── examples ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── oguzbabaoglu │ │ └── fancymarkers │ │ └── examples │ │ ├── CircleView.java │ │ ├── ColorMarker.java │ │ ├── ExampleActivity.java │ │ └── NetworkMarker.java │ └── res │ ├── drawable-xxhdpi │ └── ic_map_bubble.png │ ├── drawable │ ├── bread.png │ ├── bread_c.png │ ├── butcher.png │ ├── butcher_c.png │ ├── fruits.png │ ├── fruits_c.png │ ├── grocery.png │ ├── grocery_c.png │ ├── patisserie.png │ └── patisserie_c.png │ ├── layout │ ├── activity_example.xml │ ├── view_color_marker.xml │ └── view_network_marker.xml │ ├── mipmap-hdpi │ └── ic_launcher.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ └── values │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── fancymarkers ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── oguzbabaoglu │ └── fancymarkers │ ├── BitmapGenerator.java │ ├── CustomMarker.java │ ├── IconMarker.java │ └── MarkerManager.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── images └── markers.gif ├── maven.gradle └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzbabaoglu/android-custom-markers/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzbabaoglu/android-custom-markers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzbabaoglu/android-custom-markers/HEAD/README.md -------------------------------------------------------------------------------- /examples/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzbabaoglu/android-custom-markers/HEAD/examples/build.gradle -------------------------------------------------------------------------------- /examples/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzbabaoglu/android-custom-markers/HEAD/examples/proguard-rules.pro -------------------------------------------------------------------------------- /examples/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzbabaoglu/android-custom-markers/HEAD/examples/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /examples/src/main/java/com/oguzbabaoglu/fancymarkers/examples/CircleView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzbabaoglu/android-custom-markers/HEAD/examples/src/main/java/com/oguzbabaoglu/fancymarkers/examples/CircleView.java -------------------------------------------------------------------------------- /examples/src/main/java/com/oguzbabaoglu/fancymarkers/examples/ColorMarker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzbabaoglu/android-custom-markers/HEAD/examples/src/main/java/com/oguzbabaoglu/fancymarkers/examples/ColorMarker.java -------------------------------------------------------------------------------- /examples/src/main/java/com/oguzbabaoglu/fancymarkers/examples/ExampleActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzbabaoglu/android-custom-markers/HEAD/examples/src/main/java/com/oguzbabaoglu/fancymarkers/examples/ExampleActivity.java -------------------------------------------------------------------------------- /examples/src/main/java/com/oguzbabaoglu/fancymarkers/examples/NetworkMarker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzbabaoglu/android-custom-markers/HEAD/examples/src/main/java/com/oguzbabaoglu/fancymarkers/examples/NetworkMarker.java -------------------------------------------------------------------------------- /examples/src/main/res/drawable-xxhdpi/ic_map_bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzbabaoglu/android-custom-markers/HEAD/examples/src/main/res/drawable-xxhdpi/ic_map_bubble.png -------------------------------------------------------------------------------- /examples/src/main/res/drawable/bread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzbabaoglu/android-custom-markers/HEAD/examples/src/main/res/drawable/bread.png -------------------------------------------------------------------------------- /examples/src/main/res/drawable/bread_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzbabaoglu/android-custom-markers/HEAD/examples/src/main/res/drawable/bread_c.png -------------------------------------------------------------------------------- /examples/src/main/res/drawable/butcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzbabaoglu/android-custom-markers/HEAD/examples/src/main/res/drawable/butcher.png -------------------------------------------------------------------------------- /examples/src/main/res/drawable/butcher_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzbabaoglu/android-custom-markers/HEAD/examples/src/main/res/drawable/butcher_c.png -------------------------------------------------------------------------------- /examples/src/main/res/drawable/fruits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzbabaoglu/android-custom-markers/HEAD/examples/src/main/res/drawable/fruits.png -------------------------------------------------------------------------------- /examples/src/main/res/drawable/fruits_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzbabaoglu/android-custom-markers/HEAD/examples/src/main/res/drawable/fruits_c.png -------------------------------------------------------------------------------- /examples/src/main/res/drawable/grocery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzbabaoglu/android-custom-markers/HEAD/examples/src/main/res/drawable/grocery.png -------------------------------------------------------------------------------- /examples/src/main/res/drawable/grocery_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzbabaoglu/android-custom-markers/HEAD/examples/src/main/res/drawable/grocery_c.png -------------------------------------------------------------------------------- /examples/src/main/res/drawable/patisserie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzbabaoglu/android-custom-markers/HEAD/examples/src/main/res/drawable/patisserie.png -------------------------------------------------------------------------------- /examples/src/main/res/drawable/patisserie_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzbabaoglu/android-custom-markers/HEAD/examples/src/main/res/drawable/patisserie_c.png -------------------------------------------------------------------------------- /examples/src/main/res/layout/activity_example.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzbabaoglu/android-custom-markers/HEAD/examples/src/main/res/layout/activity_example.xml -------------------------------------------------------------------------------- /examples/src/main/res/layout/view_color_marker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzbabaoglu/android-custom-markers/HEAD/examples/src/main/res/layout/view_color_marker.xml -------------------------------------------------------------------------------- /examples/src/main/res/layout/view_network_marker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzbabaoglu/android-custom-markers/HEAD/examples/src/main/res/layout/view_network_marker.xml -------------------------------------------------------------------------------- /examples/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzbabaoglu/android-custom-markers/HEAD/examples/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzbabaoglu/android-custom-markers/HEAD/examples/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzbabaoglu/android-custom-markers/HEAD/examples/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzbabaoglu/android-custom-markers/HEAD/examples/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzbabaoglu/android-custom-markers/HEAD/examples/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /examples/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzbabaoglu/android-custom-markers/HEAD/examples/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /examples/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzbabaoglu/android-custom-markers/HEAD/examples/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /fancymarkers/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzbabaoglu/android-custom-markers/HEAD/fancymarkers/build.gradle -------------------------------------------------------------------------------- /fancymarkers/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzbabaoglu/android-custom-markers/HEAD/fancymarkers/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /fancymarkers/src/main/java/com/oguzbabaoglu/fancymarkers/BitmapGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzbabaoglu/android-custom-markers/HEAD/fancymarkers/src/main/java/com/oguzbabaoglu/fancymarkers/BitmapGenerator.java -------------------------------------------------------------------------------- /fancymarkers/src/main/java/com/oguzbabaoglu/fancymarkers/CustomMarker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzbabaoglu/android-custom-markers/HEAD/fancymarkers/src/main/java/com/oguzbabaoglu/fancymarkers/CustomMarker.java -------------------------------------------------------------------------------- /fancymarkers/src/main/java/com/oguzbabaoglu/fancymarkers/IconMarker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzbabaoglu/android-custom-markers/HEAD/fancymarkers/src/main/java/com/oguzbabaoglu/fancymarkers/IconMarker.java -------------------------------------------------------------------------------- /fancymarkers/src/main/java/com/oguzbabaoglu/fancymarkers/MarkerManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzbabaoglu/android-custom-markers/HEAD/fancymarkers/src/main/java/com/oguzbabaoglu/fancymarkers/MarkerManager.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzbabaoglu/android-custom-markers/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzbabaoglu/android-custom-markers/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzbabaoglu/android-custom-markers/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzbabaoglu/android-custom-markers/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzbabaoglu/android-custom-markers/HEAD/gradlew.bat -------------------------------------------------------------------------------- /images/markers.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzbabaoglu/android-custom-markers/HEAD/images/markers.gif -------------------------------------------------------------------------------- /maven.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzbabaoglu/android-custom-markers/HEAD/maven.gradle -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzbabaoglu/android-custom-markers/HEAD/settings.gradle --------------------------------------------------------------------------------