Reputation: 55
hello I want to draw a coverage area of map on google map in android e.g A telecom company has coverage in all newyork so I want to fill all newyork with different color with any color.
I am looking for reply
Thanks
Upvotes: 2
Views: 343
Reputation: 3255
Think you can achieve this with circleoption on google map:
CircleOptions co = new CircleOptions();
co.center(point);
co.radius(distance);
co.strokeColor(getResources().getColor(R.color.light_blue));
co.strokeWidth(2.0f);
co.fillColor(Color.parseColor("#8CFFFFFF"));
googleMap.addCircle(co);
Upvotes: 3