使用android-maps-utils:0.5创建GeoJsonPolygon

时间:2019-06-20 07:06:03

标签: android google-maps-api-3 google-datalayer android-maps-utils

我正在使用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)来实现了,但是我敢肯定我做得不正确。

0 个答案:

没有答案