I am trying to show a MapView as a circle on Android just like that:
protected void onDraw(Canvas canvas) {
Path path = new Path();
path.addCircle(400,200,100,Direction.CW);
canvas.clipPath(path);
super.onDraw(canvas);
}
Unfortunately the MapView (v2: com.google.android.gms.maps.MapView
) component seems to ignore that and instead just taking the bounds/rect of that circle to draw the map :(
I've been searching the web for a while now, not finding a nice solution for that.
Is this even possible? (The Blundell solution is not working for me because I want the background to be visible around the map)
Thanks!