├── .gitignore ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── exlyo │ │ └── gmfmtexample │ │ ├── MapsActivity.java │ │ └── SampleMarkerData.java │ └── res │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable │ └── ic_launcher_background.xml │ ├── layout │ └── activity_maps.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 ├── googlemapsfloatingmarkertitles ├── .gitignore ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── exlyo │ └── gmfmt │ ├── FloatingMarkerTitlesOverlay.java │ ├── GMFMTGeometryCache.java │ ├── GMFMTUtils.java │ └── MarkerInfo.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── visual_demo.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidseb/android-google-maps-floating-marker-titles/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidseb/android-google-maps-floating-marker-titles/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidseb/android-google-maps-floating-marker-titles/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidseb/android-google-maps-floating-marker-titles/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidseb/android-google-maps-floating-marker-titles/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidseb/android-google-maps-floating-marker-titles/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/exlyo/gmfmtexample/MapsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidseb/android-google-maps-floating-marker-titles/HEAD/app/src/main/java/com/exlyo/gmfmtexample/MapsActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/exlyo/gmfmtexample/SampleMarkerData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidseb/android-google-maps-floating-marker-titles/HEAD/app/src/main/java/com/exlyo/gmfmtexample/SampleMarkerData.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidseb/android-google-maps-floating-marker-titles/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidseb/android-google-maps-floating-marker-titles/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_maps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidseb/android-google-maps-floating-marker-titles/HEAD/app/src/main/res/layout/activity_maps.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidseb/android-google-maps-floating-marker-titles/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/androidseb/android-google-maps-floating-marker-titles/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/androidseb/android-google-maps-floating-marker-titles/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidseb/android-google-maps-floating-marker-titles/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidseb/android-google-maps-floating-marker-titles/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidseb/android-google-maps-floating-marker-titles/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidseb/android-google-maps-floating-marker-titles/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidseb/android-google-maps-floating-marker-titles/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidseb/android-google-maps-floating-marker-titles/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidseb/android-google-maps-floating-marker-titles/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidseb/android-google-maps-floating-marker-titles/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidseb/android-google-maps-floating-marker-titles/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidseb/android-google-maps-floating-marker-titles/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidseb/android-google-maps-floating-marker-titles/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidseb/android-google-maps-floating-marker-titles/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /googlemapsfloatingmarkertitles/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /googlemapsfloatingmarkertitles/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidseb/android-google-maps-floating-marker-titles/HEAD/googlemapsfloatingmarkertitles/build.gradle -------------------------------------------------------------------------------- /googlemapsfloatingmarkertitles/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /googlemapsfloatingmarkertitles/src/main/java/com/exlyo/gmfmt/FloatingMarkerTitlesOverlay.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidseb/android-google-maps-floating-marker-titles/HEAD/googlemapsfloatingmarkertitles/src/main/java/com/exlyo/gmfmt/FloatingMarkerTitlesOverlay.java -------------------------------------------------------------------------------- /googlemapsfloatingmarkertitles/src/main/java/com/exlyo/gmfmt/GMFMTGeometryCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidseb/android-google-maps-floating-marker-titles/HEAD/googlemapsfloatingmarkertitles/src/main/java/com/exlyo/gmfmt/GMFMTGeometryCache.java -------------------------------------------------------------------------------- /googlemapsfloatingmarkertitles/src/main/java/com/exlyo/gmfmt/GMFMTUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidseb/android-google-maps-floating-marker-titles/HEAD/googlemapsfloatingmarkertitles/src/main/java/com/exlyo/gmfmt/GMFMTUtils.java -------------------------------------------------------------------------------- /googlemapsfloatingmarkertitles/src/main/java/com/exlyo/gmfmt/MarkerInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidseb/android-google-maps-floating-marker-titles/HEAD/googlemapsfloatingmarkertitles/src/main/java/com/exlyo/gmfmt/MarkerInfo.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidseb/android-google-maps-floating-marker-titles/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidseb/android-google-maps-floating-marker-titles/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidseb/android-google-maps-floating-marker-titles/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidseb/android-google-maps-floating-marker-titles/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidseb/android-google-maps-floating-marker-titles/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':googlemapsfloatingmarkertitles' 2 | -------------------------------------------------------------------------------- /visual_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidseb/android-google-maps-floating-marker-titles/HEAD/visual_demo.gif --------------------------------------------------------------------------------