Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
com.github.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:
compile 'com.github.aarsy.googlemapsanimations:googlemapsanimations:1.0.5'
<dependency>
<groupId>com.github.aarsy.googlemapsanimations</groupId>
<artifactId>googlemapsanimations</artifactId>
<version>1.0.5</version>
<type>pom</type>
</dependency>
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();
}
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
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.
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();
}
}
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();
}
}
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.
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
Minimum Android SDK: This library requires a minimum API level of 14.
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.
FAQs
"GoogleMapsRippleEffect" is an awesome android library for developers who need to show radar effect or multiple types of circular ripple effects on google map
We found that com.github.aarsy.googlemapsanimations:googlemapsanimations demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.