Я пытаюсь сделать обычный значок маркера вокруг, это мой значок маркера на данный момент:
int height = 85;
int width = 85;
Bitmap bmImg = Ion.with(navBarMainActivity.this).load(Conf.host+":"+Conf.port+"/storage/"+jo.getString("logo")).asBitmap().get();
Bitmap smallMarker = Bitmap.createScaledBitmap(bmImg, width, height, false);
Marker marker =mMap.addMarker( new MarkerOptions()
.title(jo.get("name").toString())
.position(new LatLng(latitude,longitude))
.snippet(CalculationByDistance(latitude,longitude,currentLocation.getLatitude(),currentLocation.getLongitude()))
.icon(BitmapDescriptorFactory.fromBitmap(smallMarker)));
marker.setTag(jo.get("id").toString());
я хочу сделать значок круглым