0

我有这个数据库: 在此处输入图像描述

我试图制作一个简单的折线图,这取决于这种方式的速度:

Cursor curTAB = myDataBase.rawQuery("SELECT * FROM  GPS_Values;", null);    
Integer count = 0;
while (curTAB.moveToNext()) {
String s_latitude = curTAB.getString(1);
String s_longitude = curTAB.getString(2);
String s_speed = curTAB.getString(5);    
count++;    
double latitude = Double.parseDouble(s_latitude);
double longitude = Double.parseDouble(s_longitude);
int speed = Integer.parseInt(curTAB.getString(5).toString());
if (speed <= 50) {
Log.i("Coordinates",
 s_latitude.toString() + " --- " + s_longitude.toString() + " --- " +s_speed.toString());
line.add(new LatLng(latitude, longitude)).color(Color.GREEN);
line.color(Color.GREEN);
map.addPolyline(line);
} else {
Log.e("Coordinates",
s_latitude.toString() + " --- " + s_longitude.toString() + " --- " +s_speed.toString());
line.add(new LatLng(latitude, longitude)).color(Color.BLUE);
line.color(Color.BLUE);
map.addPolyline(line);
}
Log.i("Coordinates",
s_latitude.toString() + " --- " + s_longitude.toString() + " --- " +s_speed.toString());
}
curTAB.close();
myDataBase.close();  
double latitude = Double.parseDouble(first_lat);
double longitude = Double.parseDouble(first_long);map.setMapType(GoogleMap.MAP_TYPE_NORMAL);
map.moveCamera(CameraUpdateFactory.newLatLngZoom(new LatLng(latitude,
longitude), 15));
map.animateCamera(CameraUpdateFactory.zoomTo(15), 2000, null);

但是每条线都是相同的颜色。请帮助我我做错了什么!

更新:工作代码(最后一点它不起作用但不是大问题)

Integer count = 0;
        while (curTAB.moveToNext()) {
            String s_latitude = curTAB.getString(1);
            String s_longitude = curTAB.getString(2);
            String s_speed = curTAB.getString(5);

            double latitude = Double.parseDouble(s_latitude);
            double longitude = Double.parseDouble(s_longitude);
            int speed = Integer.parseInt(curTAB.getString(5).toString());
            int position = curTAB.getPosition();

            count++;

            System.out.println("Curr     " + latitude + " --- " + longitude
                    + " --- " + speed);

            if (curTAB.moveToNext()) {
                String next_speed = curTAB.getString(5);
                String ss_latitude = curTAB.getString(1);
                String ss_longitude = curTAB.getString(2);
                System.out.println("Next     " + ss_latitude + " --- "
                        + ss_longitude + " --- " + next_speed);
                curTAB.moveToPosition(position);

                double n_latitude = Double.parseDouble(ss_latitude);
                double n_longitude = Double.parseDouble(ss_longitude);

                if (speed > 60) {
                    map.addPolyline(new PolylineOptions()
                            .add(new LatLng(latitude, longitude),
                                    new LatLng(n_latitude, n_longitude))
                            .width(10).color(Color.RED));
                } else if ((speed < 56) && (speed > 31)) {
                    map.addPolyline(new PolylineOptions()
                            .add(new LatLng(latitude, longitude),
                                    new LatLng(n_latitude, n_longitude))
                            .width(10).color(Color.GREEN));
                } else if (speed < 31) {
                    map.addPolyline(new PolylineOptions()
                            .add(new LatLng(latitude, longitude),
                                    new LatLng(n_latitude, n_longitude))
                            .width(10).color(Color.rgb(255, 127, 80)));
                }
            }else{              
                System.out.println("VÉGE");
            }

            line.add(new LatLng(latitude, longitude));

        }
4

1 回答 1

1

我不熟悉 maps-android-API,但看起来好像您为每个 db-entry 添加了一条新的折线,该折线将具有与之前添加的折线相同的路径以及当前条目中的新 LatLng。

结果将是您只看到为最后一个条目创建的多段线,它将覆盖所有其他多段线。

我猜你需要在每次迭代中设置一个新的 PolylineOptions-object 并将最近条目和当前条目的 LatLngs 添加为点以获得所需的结果。

于 2013-08-16T16:25:16.003 回答