I am trying to draw a polygon using a hand on a google map and then filling the color with a polygon.
Usually the color is filled with a fine and works as expected, but if the polygon has a capture point, then the fill color does not work.
I use the code below to draw a polygon and fill the color with a polygon
PolygonOptions drawShapeOptions = new PolygonOptions(); drawShapeOptions.addAll(mLatLngList); drawShapeOptions.strokeColor(Color.BLACK); drawShapeOptions.strokeWidth(5); drawShapeOptions.fillColor(Color.GRAY); mDrawShape = mGoogleMap.addPolygon(drawShapeOptions);
Result below

How can I fill the color in this polygon with intersecting dots?
java android polygon google-maps google-maps-api-2
Mathang
source share