├── .gitignore ├── LICENSE ├── README.md ├── app ├── .gitignore ├── app-debug.apk ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── mypopsy │ │ └── staticmaps │ │ └── demo │ │ ├── MainActivity.java │ │ ├── adapter │ │ ├── ArrayRecyclerAdapter.java │ │ ├── BindableViewHolder.java │ │ └── BindingArrayRecyclerAdapter.java │ │ ├── app │ │ ├── BaseFragment.java │ │ └── RecyclerViewFragment.java │ │ ├── glide │ │ ├── CropCircleTransformation.java │ │ ├── GlideConfigurationModule.java │ │ └── StaticMapModelLoader.java │ │ ├── ui │ │ └── DemoFragment.java │ │ ├── utils │ │ └── PaddingItemDecoration.java │ │ └── widget │ │ └── AspectLockedImageView.java │ └── res │ ├── drawable-hdpi │ ├── ic_action_github.png │ └── ic_maps_marker.png │ ├── drawable-mdpi │ ├── ic_action_github.png │ └── ic_maps_marker.png │ ├── drawable-xhdpi │ ├── ic_action_github.png │ └── ic_maps_marker.png │ ├── drawable-xxhdpi │ ├── ic_action_github.png │ └── ic_maps_marker.png │ ├── drawable-xxxhdpi │ ├── ic_action_github.png │ └── ic_maps_marker.png │ ├── drawable │ ├── dash.xml │ ├── facebook.png │ ├── frown_cloud.png │ ├── ghostbuster.png │ ├── google.png │ └── netflix.png │ ├── layout │ ├── activity_main.xml │ ├── fragment_demo.xml │ ├── layout_markers.xml │ └── listitem_demo.xml │ ├── menu │ └── listitem.xml │ ├── mipmap-hdpi │ └── ic_launcher.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ ├── mipmap-xxxhdpi │ └── ic_launcher.png │ ├── values-w820dp │ └── dimens.xml │ └── values │ ├── attrs.xml │ ├── colors.xml │ ├── dimens.xml │ ├── ids.xml │ ├── strings.xml │ ├── styles.xml │ └── themes.xml ├── assets └── screenshot.png ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── library ├── .gitignore ├── build.gradle ├── javadoc │ ├── allclasses-frame.html │ ├── allclasses-noframe.html │ ├── com │ │ └── mypopsy │ │ │ └── maps │ │ │ ├── StaticMap.Format.html │ │ │ ├── StaticMap.GeoPoint.html │ │ │ ├── StaticMap.Marker.Style.Builder.html │ │ │ ├── StaticMap.Marker.Style.Size.html │ │ │ ├── StaticMap.Marker.Style.html │ │ │ ├── StaticMap.Marker.html │ │ │ ├── StaticMap.MarkerGroup.html │ │ │ ├── StaticMap.Path.Style.Builder.html │ │ │ ├── StaticMap.Path.Style.html │ │ │ ├── StaticMap.Path.html │ │ │ ├── StaticMap.Type.html │ │ │ ├── StaticMap.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ └── package-tree.html │ ├── constant-values.html │ ├── deprecated-list.html │ ├── help-doc.html │ ├── index-all.html │ ├── index.html │ ├── overview-tree.html │ ├── package-list │ ├── resources │ │ ├── background.gif │ │ ├── tab.gif │ │ ├── titlebar.gif │ │ └── titlebar_end.gif │ └── stylesheet.css └── src │ └── main │ └── java │ └── com │ └── mypopsy │ └── maps │ ├── StaticMap.java │ └── internal │ ├── PolyLine.java │ └── UrlBuilder.java └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/app-debug.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/app-debug.apk -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/mypopsy/staticmaps/demo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/src/main/java/com/mypopsy/staticmaps/demo/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/mypopsy/staticmaps/demo/adapter/ArrayRecyclerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/src/main/java/com/mypopsy/staticmaps/demo/adapter/ArrayRecyclerAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/mypopsy/staticmaps/demo/adapter/BindableViewHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/src/main/java/com/mypopsy/staticmaps/demo/adapter/BindableViewHolder.java -------------------------------------------------------------------------------- /app/src/main/java/com/mypopsy/staticmaps/demo/adapter/BindingArrayRecyclerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/src/main/java/com/mypopsy/staticmaps/demo/adapter/BindingArrayRecyclerAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/mypopsy/staticmaps/demo/app/BaseFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/src/main/java/com/mypopsy/staticmaps/demo/app/BaseFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/mypopsy/staticmaps/demo/app/RecyclerViewFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/src/main/java/com/mypopsy/staticmaps/demo/app/RecyclerViewFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/mypopsy/staticmaps/demo/glide/CropCircleTransformation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/src/main/java/com/mypopsy/staticmaps/demo/glide/CropCircleTransformation.java -------------------------------------------------------------------------------- /app/src/main/java/com/mypopsy/staticmaps/demo/glide/GlideConfigurationModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/src/main/java/com/mypopsy/staticmaps/demo/glide/GlideConfigurationModule.java -------------------------------------------------------------------------------- /app/src/main/java/com/mypopsy/staticmaps/demo/glide/StaticMapModelLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/src/main/java/com/mypopsy/staticmaps/demo/glide/StaticMapModelLoader.java -------------------------------------------------------------------------------- /app/src/main/java/com/mypopsy/staticmaps/demo/ui/DemoFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/src/main/java/com/mypopsy/staticmaps/demo/ui/DemoFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/mypopsy/staticmaps/demo/utils/PaddingItemDecoration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/src/main/java/com/mypopsy/staticmaps/demo/utils/PaddingItemDecoration.java -------------------------------------------------------------------------------- /app/src/main/java/com/mypopsy/staticmaps/demo/widget/AspectLockedImageView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/src/main/java/com/mypopsy/staticmaps/demo/widget/AspectLockedImageView.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/src/main/res/drawable-hdpi/ic_action_github.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_maps_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/src/main/res/drawable-hdpi/ic_maps_marker.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/src/main/res/drawable-mdpi/ic_action_github.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_maps_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/src/main/res/drawable-mdpi/ic_maps_marker.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/src/main/res/drawable-xhdpi/ic_action_github.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_maps_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/src/main/res/drawable-xhdpi/ic_maps_marker.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_github.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_maps_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/src/main/res/drawable-xxhdpi/ic_maps_marker.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_action_github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/src/main/res/drawable-xxxhdpi/ic_action_github.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_maps_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/src/main/res/drawable-xxxhdpi/ic_maps_marker.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/dash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/src/main/res/drawable/dash.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/src/main/res/drawable/facebook.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/frown_cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/src/main/res/drawable/frown_cloud.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ghostbuster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/src/main/res/drawable/ghostbuster.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/src/main/res/drawable/google.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/netflix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/src/main/res/drawable/netflix.png -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_demo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/src/main/res/layout/fragment_demo.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/layout_markers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/src/main/res/layout/layout_markers.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/listitem_demo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/src/main/res/layout/listitem_demo.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/listitem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/src/main/res/menu/listitem.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/src/main/res/values/ids.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /assets/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/assets/screenshot.png -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/gradlew.bat -------------------------------------------------------------------------------- /library/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /library/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/library/build.gradle -------------------------------------------------------------------------------- /library/javadoc/allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/library/javadoc/allclasses-frame.html -------------------------------------------------------------------------------- /library/javadoc/allclasses-noframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/library/javadoc/allclasses-noframe.html -------------------------------------------------------------------------------- /library/javadoc/com/mypopsy/maps/StaticMap.Format.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/library/javadoc/com/mypopsy/maps/StaticMap.Format.html -------------------------------------------------------------------------------- /library/javadoc/com/mypopsy/maps/StaticMap.GeoPoint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/library/javadoc/com/mypopsy/maps/StaticMap.GeoPoint.html -------------------------------------------------------------------------------- /library/javadoc/com/mypopsy/maps/StaticMap.Marker.Style.Builder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/library/javadoc/com/mypopsy/maps/StaticMap.Marker.Style.Builder.html -------------------------------------------------------------------------------- /library/javadoc/com/mypopsy/maps/StaticMap.Marker.Style.Size.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/library/javadoc/com/mypopsy/maps/StaticMap.Marker.Style.Size.html -------------------------------------------------------------------------------- /library/javadoc/com/mypopsy/maps/StaticMap.Marker.Style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/library/javadoc/com/mypopsy/maps/StaticMap.Marker.Style.html -------------------------------------------------------------------------------- /library/javadoc/com/mypopsy/maps/StaticMap.Marker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/library/javadoc/com/mypopsy/maps/StaticMap.Marker.html -------------------------------------------------------------------------------- /library/javadoc/com/mypopsy/maps/StaticMap.MarkerGroup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/library/javadoc/com/mypopsy/maps/StaticMap.MarkerGroup.html -------------------------------------------------------------------------------- /library/javadoc/com/mypopsy/maps/StaticMap.Path.Style.Builder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/library/javadoc/com/mypopsy/maps/StaticMap.Path.Style.Builder.html -------------------------------------------------------------------------------- /library/javadoc/com/mypopsy/maps/StaticMap.Path.Style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/library/javadoc/com/mypopsy/maps/StaticMap.Path.Style.html -------------------------------------------------------------------------------- /library/javadoc/com/mypopsy/maps/StaticMap.Path.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/library/javadoc/com/mypopsy/maps/StaticMap.Path.html -------------------------------------------------------------------------------- /library/javadoc/com/mypopsy/maps/StaticMap.Type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/library/javadoc/com/mypopsy/maps/StaticMap.Type.html -------------------------------------------------------------------------------- /library/javadoc/com/mypopsy/maps/StaticMap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/library/javadoc/com/mypopsy/maps/StaticMap.html -------------------------------------------------------------------------------- /library/javadoc/com/mypopsy/maps/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/library/javadoc/com/mypopsy/maps/package-frame.html -------------------------------------------------------------------------------- /library/javadoc/com/mypopsy/maps/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/library/javadoc/com/mypopsy/maps/package-summary.html -------------------------------------------------------------------------------- /library/javadoc/com/mypopsy/maps/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/library/javadoc/com/mypopsy/maps/package-tree.html -------------------------------------------------------------------------------- /library/javadoc/constant-values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/library/javadoc/constant-values.html -------------------------------------------------------------------------------- /library/javadoc/deprecated-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/library/javadoc/deprecated-list.html -------------------------------------------------------------------------------- /library/javadoc/help-doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/library/javadoc/help-doc.html -------------------------------------------------------------------------------- /library/javadoc/index-all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/library/javadoc/index-all.html -------------------------------------------------------------------------------- /library/javadoc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/library/javadoc/index.html -------------------------------------------------------------------------------- /library/javadoc/overview-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/library/javadoc/overview-tree.html -------------------------------------------------------------------------------- /library/javadoc/package-list: -------------------------------------------------------------------------------- 1 | com.mypopsy.maps 2 | -------------------------------------------------------------------------------- /library/javadoc/resources/background.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/library/javadoc/resources/background.gif -------------------------------------------------------------------------------- /library/javadoc/resources/tab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/library/javadoc/resources/tab.gif -------------------------------------------------------------------------------- /library/javadoc/resources/titlebar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/library/javadoc/resources/titlebar.gif -------------------------------------------------------------------------------- /library/javadoc/resources/titlebar_end.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/library/javadoc/resources/titlebar_end.gif -------------------------------------------------------------------------------- /library/javadoc/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/library/javadoc/stylesheet.css -------------------------------------------------------------------------------- /library/src/main/java/com/mypopsy/maps/StaticMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/library/src/main/java/com/mypopsy/maps/StaticMap.java -------------------------------------------------------------------------------- /library/src/main/java/com/mypopsy/maps/internal/PolyLine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/library/src/main/java/com/mypopsy/maps/internal/PolyLine.java -------------------------------------------------------------------------------- /library/src/main/java/com/mypopsy/maps/internal/UrlBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renaudcerrato/static-maps-api/HEAD/library/src/main/java/com/mypopsy/maps/internal/UrlBuilder.java -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':library' 2 | --------------------------------------------------------------------------------