[2.13.0] taxi/bus 轨迹问题处理
This commit is contained in:
@@ -216,7 +216,7 @@ public class CoordinateCalculateRouteUtil {
|
||||
//转成MogoLatLng集合
|
||||
List<LatLng> list = new ArrayList<>();
|
||||
for (MogoLocation m : models) {
|
||||
LatLng mogoLatLng = coordinateConverterWgsToGcj(mContext, m.getLongitude(),m.getLatitude());
|
||||
LatLng mogoLatLng = new LatLng(m.getLatitude(), m.getLongitude());
|
||||
list.add(mogoLatLng);
|
||||
}
|
||||
return list;
|
||||
|
||||
@@ -1267,7 +1267,6 @@ public class TaxiModel {
|
||||
}
|
||||
if (null != routeList && routeList.getWayPointsList().size() > 0) {
|
||||
updateOrderRoute(routeList.getWayPointsList());
|
||||
// setRouteLineMarker(routeList.getWayPointsList());
|
||||
updateOrderRouteInfo(routeList.getWayPointsList());
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user