如何正确绘制折线

时间:2018-12-19 18:58:08

标签: android sqlite polyline

我正在使用经度和纬度在android折线上工作,但这些点使我加入了 已经尝试了其他How to dynamically add polylines from an arraylist

so he paints

            pointss =  getCoordenadas();
            for (int x = 0; x < pointss.size(); x++){
                polylineOptions.add(pointss.get(x));
            }
            mMap.addPolyline(polylineOptions);

public List<LatLng> getAllPositions(String co, String lo) {
    List<LatLng> positionList = new ArrayList<LatLng>();

    FallasHelper falHelper = new FallasHelper(getActivity());
    cursor = falHelper.Select(co,lo);
    cursor.moveToFirst();
    while (!cursor.isAfterLast()) {
        double latitude = cursor.getDouble(0);
        double longitude = cursor.getDouble(1);

        LatLng newLatLng = new LatLng(latitude, longitude);
        positionList.add(newLatLng);
        cursor.moveToNext();
    }
    cursor.close();
    return positionList;
}

0 个答案:

没有答案