I want to develop below picture in android, which is already implemented in iOS.
I know how to add circle on google map. but as shown in picture the color should be filled on map not on the circle, circle must be fully transparent.
i have referred many links but all of that put the simple overlay on map, so when user zoom in or zoom out the map; circle remains the same.
i have implemented simple circle around current location.
googleMap.addCircle(new CircleOptions()
.center(new LatLng(MyApplication.latitude, MyApplication.longitude))
.radius(800)
.fillColor(0x70ffffff))
.setStrokeWidth(0);
i want above functionality with inverse color. circle should be only around current location and the size should vary with zoom in and zoom out of map.
Thanks.