检查Google地图内的多边形是否“有效”

时间:2018-07-23 04:57:34

标签: android google-maps polygon

如何检查Google地图中的多边形是否“有效”,我的意思是:

有效:

Valid

无效:

enter image description here

PolygonOptions po = new PolygonOptions()
                            .strokeColor(Color.RED)
                            .fillColor(Color.BLUE).strokeWidth(3);

                    for(int i=0;i<listLatLng.size();i++){
                        googleMap.addMarker(new MarkerOptions().position(listLatLng.get(i)));
                        po.add(listLatLng.get(i));
                    }

                    googleMap.addPolygon(po);

谢谢。

0 个答案:

没有答案