Google Static Maps API


Source link: https://github.com/renaudcerrato/static-maps-api

Google Static Maps API

Fluent and clean Java interface for Google Static Maps API.

DEMO APK

Why?

Because using Google Play Services to show a Google Map may be overkill, or simply because Google Play Services are not available (Amazon, I'm looking at you!).

How?

Most of the official API is available under a fluent java interface. You'll find below some example usage, for more details, see the official documentation or look at the demo source.

Basic usage

StaticMap map = new StaticMap().center("NYC").size(320, 240);
 load(map.toURL());
 // load into your image view

Map Type

new StaticMap().center("NYC").type(HYBRID).size(320, 240);

Markers

Custom colors

 new StaticMap()
  .size(320, 240)
  .marker(Style.BLUE, new GeoPoint("Tour Eiffel"))
  .marker(Style.RED, new GeoPoint("Cathédrale Notre Dame"))
  .marker(Style.GREEN, new GeoPoint("Sacré-Coeur, 75018"))
  .marker(Style.ORANGE, new GeoPoint("Musée du Louvre"))
  .marker(Style.PURPLE, new GeoPoint("Arc de Triomphe"));

Custom icons

new StaticMap()
  .size(320, 240)
  .marker(Style.builder().icon(ICON_URL_GHOSTBUSTER).build(), new GeoPoint(40.7195532,-74.0067987))
  .marker(Style.RED.toBuilder().label('A').build(), new GeoPoint(40.7529234,-73.9827515))
  .marker(Style.GREEN.toBuilder().label('B').build(), new GeoPoint("Columbia University, NYC"));

Path

Line

new StaticMap()
  .size(320, 240)
  .path(Path.Style.builder().color(BLUE).build(),

  new GeoPoint(40.737102,-73.990318),

  new GeoPoint(40.749825,-73.987963),

  new GeoPoint(40.752946,-73.987384),

  new GeoPoint(40.755823,-73.986397));

### Filled
new StaticMap()
  .size(320, 240)
  .path(Path.Style.builder().color(Color.TRANSPARENT).fill(0x66ff0000).build(),

  new GeoPoint("Miami, Florida"),

  new GeoPoint("San Juan, Puerto Rico"),

  new GeoPoint("Bermuda Island"));

Install

This repository can be found on JitPack:

https://jitpack.io/#renaudcerrato/static-maps-api

Add it in your root build.gradle at the end of repositories:

allprojects {
  repositories {

...
maven {
 url "https://jitpack.io" 
}
  
}
 
}
 

Add the dependency:

dependencies {
  compile 'com.github.renaudcerrato:static-maps-api:1.0.4' 
}
 

Or you can simply download the jars:

Resources

colorpickercollection provides a simple collection of Color Picker.

  • Color Picker from Stock Calendar
  • Color Picker from Dashclock

ChromeADB is a Chrome ADB (Android Debug Bridge) client.

When launched, you can see all devices connected to your machine if the ADB connection is successful. Click a device that you want to control or monitor. And enjoy!

Why use Holdr?

  • Because you hate typing findViewById() all the time.
  • Because Butterknife requires non-zero boilerplate and doesn't work well in library projects.
  • Because view holders are cool, but a pain to write.

Gradle Retrolambda Plugin

This plugin will automatically build your java or android project with retrolambda, giving you lambda goodness on java 6 or 7. The minimum android gradle plugin is 0.8+.

Asynchronous operations in Android are very hard to get right due to the Activity lifecycle. AsyncTasks don't handle any of it making them difficult to use. Loaders handle many things for you, but have a clunky api and fall down anytime you want to do anything more complex than loading data immediately when the Activity or Fragment is shown.

This library builds upon rxjava to handle all these things for you with an easy-to-use api.

Unofficial Android REST Client for 9GAG.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes