RouteDrawer


Source link: https://github.com/polok/RouteDrawer

RouteDrawer

RouteDrawer wraps Google Directions API ( https://developers.google.com/maps/documentation/directions/) using RxJava for Android so developers can download, parse and draw path on the map in very fast and flexible way (For now only JSON support).

The library contains two main parts.

  • RouteApi is responsible for sending request to Google's Direction API and handling the response

  • DrawerApi is responsible for drawing the path on the map

GRADLE

If you are using gradle you have to add this one line of code to your build.gradle file under dependencies section:

 compile 'com.github.polok.routedrawer:library:1.0.0'

In other case you have to take whole library project.

USAGE

First we have to download the path. For this we need to provide two points (start and end) and travel mode.

public interface RouteApi {

  Observable<String> getJsonDirections(final LatLng start, final LatLng end, final TravelMode mode);
 
}

Where travel mode can be:

public enum TravelMode {

  DRIVING,
  WALKING,
  BICYCLING,
  TRANSIT 
}

As you can see the above method returns Observable and our response is a String. So far so good, we downloaded the route but what the hell - response as String, I don't want to parse it on my own.

With RxJava and some transformations nothing more easily.

Have a look:

routeRest.getJsonDirections(new LatLng(50.126922, 19.015261), new LatLng(50.200206, 19.175603), TravelMode.DRIVING)

  .observeOn(AndroidSchedulers.mainThread())

  .map(new Func1<String, Routes>() {

@Override

public Routes call(String s) {

 return new RouteJsonParser<Routes>().parse(s, Routes.class);

}

  
}
)

  .subscribe(new Action1<Routes>() {

@Override

public void call(Routes r) {

 ...

}

  
}
);

The most important part here is

... .map(new Func1<String, Routes>() {

@Override

public Routes call(String s) {

 return new RouteJsonParser<Routes>().parse(s, Routes.class);

}

  
}
)

For more details about 'map' operator can be find here - https://github.com/ReactiveX/RxJava/wiki/Transforming-Observables#map In short, we parse our response to Routes object, so now we can go to draw the path on the map.

Here we have to use DrawerApi which for now provides one method:

void drawPath(Routes routes);

(for now it forces to use Routes object).

We are almost there but before we invoke draw method we have to build our drawer using RouteDrawerBuilder. It allows us to customize a little bit the path and the markers. It requires to get GoogleMap(!) and if we want we can provide

- marker icon - path width - path color - marker alpha 

This can look as

 final RouteDrawer routeDrawer = new RouteDrawer.RouteDrawerBuilder(googleMap)

  .withColor(Color.BLUE)

  .withWidth(8)

  .withAlpha(0.5f)

  .withMarkerIcon(BitmapDescriptorFactory.defaultMarker(BitmapDescriptorFactory.HUE_ORANGE))

  .build();

And taking all together:

 private GoogleMap googleMap;

@Override
  protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

 setContentView(R.layout.activity_main);

 googleMap = ((MapFragment) getFragmentManager().findFragmentById(R.id.map)).getMap();

 final RouteDrawer routeDrawer = new RouteDrawer.RouteDrawerBuilder(googleMap)

  .withColor(Color.BLUE)

  .withWidth(8)

  .withAlpha(0.5f)

  .withMarkerIcon(BitmapDescriptorFactory.defaultMarker(BitmapDescriptorFactory.HUE_ORANGE))

  .build();

 RouteRest routeRest = new RouteRest();

 routeRest.getJsonDirections(new LatLng(50.126922, 19.015261), new LatLng(50.200206, 19.175603), TravelMode.DRIVING)

  .observeOn(AndroidSchedulers.mainThread())

  .map(new Func1<String, Routes>() {

@Override

public Routes call(String s) {

 return new RouteJsonParser<Routes>().parse(s, Routes.class);

}

  
}
)

  .subscribe(new Action1<Routes>() {

@Override

public void call(Routes r) {

 routeDrawer.drawPath(r);

}

  
}
);

}

Developed By

Marcin Polak - mpolak87(at).gmail.com

License

Copyright 2015 Marcin Polak  Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License. You may obtain a copy of the License at  http://www.apache.org/licenses/LICENSE-2.0  Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 

Resources

Inspiration comes from UC Browser. It's a beautiful and funny ball to show pull to refresh and go back.It's based on Bessel curve.

This library is to take picture using camera from background without displaying preview.

A sample application that can be used as a template for implementing Mobile Two Factor Auth

The major drawback of authentication performed including something that the user possesses is that the physical token (the USB stick, the bank card, the key or similar) must be carried around by the user, practically at all times. Loss and theft are a risk. There are also costs involved in procuring and subsequently replacing tokens of this kind. In addition, there are inherent conflicts and unavoidable trade-offs between usability and security.

It is a library with several commonly used Input Dialogs implementations.

A Mac App, for Apk multi-channel package.

A playground for MVVM style architecture on Android.

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