问题
How draw dotted circle using google maps api? I mean stylize default circle that we draw using method map.addCirlce().
Like this:dotted circle
回答1:
plz, use official google docs Circle
you need Stroke Pattern
java.util.List<PatternItem> pattern = Arrays.<PatternItem>asList(new Dot());
map.addCircle(new CircleOptions()
.center(latLng)
.radius(radius)
.strokePattern(pattern)
来源:https://stackoverflow.com/questions/43982732/how-draw-dotted-circle-using-google-maps-api