Skip to content

Instantly share code, notes, and snippets.

View KennyGoers's full-sized avatar

Kenny Goers KennyGoers

View GitHub Profile
@nanopc
nanopc / gist:7b693607e673c4bcafed701b5d3f54ab
Last active May 12, 2019 09:11
SVG-VectorDrawable as Maps Marker icon on Android
BitmapDescriptor markerIcon = vectorToBitmap(R.drawable.vectordrawableicon,
ContextCompat.getColor(getApplicationContext(),
R.color.marker));
mMap.addMarker(new MarkerOptions()
.icon(markerIcon)
.position(LatLng())
);
private BitmapDescriptor vectorToBitmap(@DrawableRes int id, @ColorInt int color) {