|
@@ -71,7 +71,7 @@ public class VisionServiceImpl implements IVisionService {
|
|
|
}
|
|
|
if (CollUtil.isNotEmpty(geoPoints) && geoPoints.size() >= 2) {
|
|
|
Map<String, GeoPoint> res = new HashMap<>();
|
|
|
- List<GeoPoint> statusFourPoints = geoPoints.stream().filter(item -> item.getStatusIndicator() == 4).collect(Collectors.toList());
|
|
|
+ List<GeoPoint> statusFourPoints = geoPoints.stream().filter(item -> item.getStatusIndicator() == 4 || item.getStatusIndicator() == 100 || item.getStatusIndicator() == 104).collect(Collectors.toList());
|
|
|
if (statusFourPoints.size() >= 2) {
|
|
|
CoordinateUtil.divide(0, statusFourPoints.size() - 1, statusFourPoints.toArray(new GeoPoint[0]), res);
|
|
|
}else {
|