Find LatLng at a distance of radii from the center of LatLng on the map now convert both of these LatLngs to screenCoordinates
Use the formula used to build cirle x = Rsin (theta), y = Rcos (theta)
you divide the circle into N segments, and then draw polylines (drawn on the map) around the circle, converting the screen coordinates to LatLngs
more than N is more like a circle, I used N = 120 according to the zoom level, I use 13.
private void addDottedCircle(double radius) {

source share