I have to work with:
float delta = 0.1f;
List points = Arrays.asList(new LatLng(90, -180),
new LatLng(-90+delta, -180+delta),
new LatLng(-90+delta, 0),
new LatLng(-90+delta, 180-delta),
new LatLng(0, 180-delta),
new LatLng(90-delta, 180-delta),
new LatLng(90-delta, 0),
new LatLng(90-delta, -180+delta),
new LatLng(0,-180+delta));
PolygonOptions options = new PolygonOptions();
options.addAll(points);
options.fillColor(R.color.red_half_alpha);
map.addPolygon(options);
Hope you see where this code goes. It works great with android v2 card.
, . , (, LatLng (0,180), LatLng (0, -180)), , , .
.
PS: , , . , .