GoogleMapsAnimation


Source link: https://github.com/aarsy/GoogleMapsAnimations

GoogleMapsAnimations

"GoogleMapsAnimations" is an awesome first of its type android library for showing a ripple and radar animations on a google map, e.g show catchment area of an earthquake where ripples have been felt, give prominence to certain markers which need to be highlighted. Also add a ripple when your user is moving on the map and give a #PokemonGo type ripple effect and also add a radar type effect to show users that you are searching in certain area

Below samples show the ripple effect in action:


Download

Using Gradle: under dependencies section:

compile 'com.github.aarsy.googlemapsanimations:googlemapsanimations:1.0.5'

or Using Maven:

<dependency>
  <groupId>com.github.aarsy.googlemapsanimations</groupId>
  <artifactId>googlemapsanimations</artifactId>
  <version>1.0.5</version>
  <type>pom</type> </dependency>

Documentation

Ripple Animation

Default Ripple animation

Just two lines of code :
Use .startRippleMapAnimation() and .stopRippleMapAnimation() methods to start and stop Animation.
Example is given below (Preview shown above in first sample)

// mMap is GoogleMap object, latLng is the location on map from which ripple should start MapRipple mapRipple = new MapRipple(mMap, latLng, context);
 mapRipple.startRippleMapAnimation();

//in onMapReadyCallBack  @Override protected void onStop() {

  super.onStop();

  if (mapRipple.isAnimationRunning()) {

mapRipple.stopRippleMapAnimation();

  
}
 
}
  // Start Animation again only if it is not running if (!mapRipple.isAnimationRunning()) {

  mapRipple.startRippleMapAnimation();
 
}

Advanced Ripple animation

Example is given below (Preview shown above in second sample)

// mMap is GoogleMap object, latLng is the location on map from which ripple should start MapRipple mapRipple = new MapRipple(mMap, latLng, context)

  .withNumberOfRipples(3)

  .withFillColor(Color.BLUE)

  .withStrokeColor(Color.BLACK)

  .withStrokewidth(10)

// 10dp

  .withDistance(2000)

// 2000 metres radius

  .withRippleDuration(12000)
 //12000ms

  .withTransparency(0.5f);

 mapRipple.startRippleMapAnimation();
 // Use same procedure to stop Animation and start it again as mentioned anove in Default Ripple Animation Sample

Update center of ripple as location changes(Needed when user moves)

Just one line of code is needed:
Use .mapRipple.withLatLng(LatLng changedLatlng) method anytime in future to update center of ripple.

// after implementing LocationListener interface to current class use: @Override public void onLocationChanged(Location location) {

  mapRipple.withLatLng(new LatLng(location.getLatitude(), location.getLongitude()));
 
}
 //See the sample for more help.

Radar Animation

Simple Clockwise Radar animation

Just two lines of code :
Use .startRadarAnimation() and .stopRadarAnimation() methods to start and stop Animation.
Example is given below (Preview shown above in third sample)

// mMap is GoogleMap object, latLng is the location on map from which ripple should start MapRadar mapRadar = new MapRadar(mMap, latLng, context)

  .withDistance(2000)

  .withOuterCircleStrokeColor(0xfccd29)

  .withRadarColors(0x00fccd29, 0xfffccd29)

  //withRadarColors() have two parameters, startColor and tailColor respectively

  //startColor should start with transparency, here 00 in front of fccd29 indicates fully transparent

  //tailColor should end with opaqueness, here f in front of fccd29 indicates fully opaque

  .startRadarAnimation();

//in onMapReadyCallBack  @Override protected void onStop() {

  super.onStop();

  if (mapRadar.isAnimationRunning()) {

mapRadar.stopRadarAnimation();

  
}
 
}

Advanced Clockwise and AntiClockwise Radar animation

Example is given below (Preview shown above in fourth sample)

// mMap is GoogleMap object, latLng is the location on map from which ripple should start MapRadar mapRadar = new MapRadar(mMap, latLng, context)

  .withDistance(2000)

  .withOuterCircleStrokeColor(0xfccd29)

  .withOuterCircleStrokewidth(7)

  .withOuterCircleTransparency(0.4f)

  .withClockWiseAnticlockwise(true)  //enable both side rotation

  .withClockwiseAnticlockwiseDuration(2)

  //withClockwiseAnticlockwiseDuration(duration), here duration denotes how much cycles should animation makes in 

  //one direction

  .withOuterCircleFillColor(0x12000000)

  .withRadarColors(0x00fccd29, 0xfffccd29)

  //withRadarColors() have two parameters, startColor and tailColor respectively

  //startColor should start with transparency, here 00 in front of fccd29 indicates fully transparent

  //tailColor should end with opaqueness, here f in front of fccd29 indicates fully opaque

  .withRadarSpeed(5) //controls radar speed

  .withRadarTransparency(0.4f);
 mapRadar.startRadarAnimation();

//in onMapReadyCallBack  @Override protected void onStop() {

  super.onStop();

  if (mapRadar.isAnimationRunning()) {

mapRadar.stopRadarAnimation();

  
}
 
}

Update center of radar as location changes(Needed when user moves)

Just one line of code is needed:
Use .mapRadar.withLatLng(LatLng changedLatlng) method anytime in future to update center of radar.

// after implementing LocationListener interface to current class use: @Override public void onLocationChanged(Location location) {

  mapRadar.withLatLng(new LatLng(location.getLatitude(), location.getLongitude()));
 
}
 //See the sample for more help.

Build the sample

To build the sample project, enable the project explorer under Android view, just go to res/values and find google_maps_api.xml(debug). Generate a google maps API key for yourself and enter it in this file, the SHA-1 fingerprint already given in the file is mine but you should generate your own. Follow these if you need some help. http://stackoverflow.com/questions/15727912/sha-1-fingerprint-of-keystore-certificate https://developers.google.com/maps/documentation/android-api/start

Compatibility

Minimum Android SDK: This library requires a minimum API level of 14.

License

Copyright 2017 Abhay Raj Singh Yadav(arsy).  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

CPN

This is a small library that wraps Google Cloud Messaging solution to make it easier to implement it. It also add the ability to consume notification if the app is running at the moment of receiving the notification without additional work.

Servant will create and manage GoogleApiClient from Google Play Services for you so you can focus on the important actions and requests you want to perform with them.

Gradle plugin for creating fat/uber JARs with support for package relocation.

Easily add "New Post" popup button with the feeds (RecyclerView) of your app.

A nice breathing progress component.

Lightweight Android MVP library with easy implementation.

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