lizhanwei
2020-03-21 46bf3d68645d566e726288279c026033901c67b5
app/src/main/java/safeluck/drive/evaluation/fragment/RoadDriveMapFragmentaa.java
@@ -346,6 +346,17 @@
                }else{
                    List<Integer> area = mapItem.getArea();
                    List<Integer> stoplines = mapItem.getStop_line();
                    for (int aaa = 0; aaa <stoplines.size(); aaa++) {
                        int pos = stoplines.get(aaa);
                        if (aaa==0){
                            path.moveTo((float) (base_x + (map[pos][0] - min_x) * scale_x), (float) (base_y + (map[pos][1] - min_y) * scale_y));
                        }else{
                            path.lineTo((float) (base_x + (map[pos][0] - min_x) * scale_x), (float) (base_y + (map[pos][1] - min_y) * scale_y));
                        }
                        canvas2.drawPath(path,paint);
                    }
                    for (int jj = 0; jj < area.size(); jj++) {
                        int pos = area.get(jj);
                        if (jj==0){