Merge branch 'dev_robotaxi-d-app-module_240_230131_2.14.0' into 'test_robotaxi-d-app-module_240_230131_2.14.0.1'

[2.14.0][Fix]解决高精地图缓存数据初始状态的问题

See merge request zhjt/AndroidApp/MoGoEagleEye!574
This commit is contained in:
wangmingjun
2023-02-20 12:39:20 +00:00
4 changed files with 4 additions and 4 deletions

View File

@@ -49,7 +49,7 @@ object CallerMapUIServiceManager {
}
fun isCityDataCached(): Boolean {
return serviceProvider?.mapUIController?.isCityDataCached ?: true
return serviceProvider?.mapUIController?.isCityDataCached ?: false
}
fun cancelDownloadCacheData() {

View File

@@ -1235,7 +1235,7 @@ public class AMapViewWrapper implements IMogoMapView,
}
}
}
return true;
return false;
}
@Override

View File

@@ -456,7 +456,7 @@ public class MogoMapUIController implements IMogoMapUIController {
if (mDelegate != null) {
return mDelegate.isCityDataCached();
}
return true;
return false;
}
@Override

View File

@@ -389,7 +389,7 @@ public class AMapUIController implements IMogoMapUIController {
if (mClient != null) {
return mClient.isCityDataCached();
}
return true;
return false;
}
@Override