代码优化

This commit is contained in:
wangcongtao
2021-03-03 10:07:02 +08:00
parent 7ca355f885
commit b37ee31e65
8 changed files with 25 additions and 14 deletions

View File

@@ -355,10 +355,10 @@ public class MogoMapUIController implements IMogoMapUIController {
}
@Override
public double[] matchRoad( double lon, double lat, double angle, boolean isRTK ) {
public double[] matchRoad( double lon, double lat, double angle, boolean isGpsLocation, boolean isRTK ) {
initDelegate();
if ( mDelegate != null ) {
return mDelegate.matchRoad( lon, lat, angle, isRTK );
return mDelegate.matchRoad( lon, lat, angle, isGpsLocation, isRTK );
}
return null;
}