This commit is contained in:
wangcongtao
2021-01-22 16:48:02 +08:00
parent 7d5e8566fd
commit 87607058cb
13 changed files with 362 additions and 84 deletions

View File

@@ -403,4 +403,14 @@ public class DebugConfig {
public static void setUseAdasRtkLocationInfo( boolean sIsUseAdasRtkLocationInfo ) {
DebugConfig.sIsUseAdasRtkLocationInfo = sIsUseAdasRtkLocationInfo;
}
public static boolean sIsNotSmooth = false;
public static boolean isNotSmooth() {
return sIsNotSmooth;
}
public static void setNotSmooth( boolean sIsNotSmooth ) {
DebugConfig.sIsNotSmooth = sIsNotSmooth;
}
}