我正在使用android-maps-utils:0.5通过以下方式创建GeoJsonPolygon
private GeoJsonFeature createPolygonFeature(List<LatLng> latLngList,String id){
GeoJsonPolygon geoJsonPolygon=new GeoJsonPolygon(Collections.singletonList(latLngList));
return new GeoJsonFeature(geoJsonPolygon,id,null,null);
}
但是,当我尝试从多边形中获取坐标时,它什么也不返回。更多事实是GeoJsonPolygon除了List<? extends List<LatLng>> coordinates
作为参数,我通过使用List<LatLng> latLngList
转换了Collections.singletonList(latLngList)
来实现了,但是我敢肯定我做得不正确。