How draw dotted circle using google maps api? I mean stylize default circle that we draw using method map.addCirlce().
Like this:dotted circle
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)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With