Add a circle on the map

Add a circle on the map.

val circle: Circle = mMap.addCircle(
    CircleOptions()
        .center(LatLng(25.105497, 121.597366))
        .radius(10.0)
        .strokeColor(Color.RED)
        .fillColor(Color.BLUE)
        .clickable(true);
)