I try to draw circles on the Google Maps API, which are transparent.
CircleOptions circleOptions = new CircleOptions()
.center(new LatLng(lat, lon))
.radius(50.0)
.strokeColor(Color.TRANSPARENT)
.strokeWidth(1)
.fillColor(Color.CYAN); //
But I like to draw them transparently, so that I can see the map behind? How could I do that?