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

This commit is contained in:
chenfufeng
2023-02-20 18:52:03 +08:00
parent 041fd8a2e2
commit a8ad4c67ca
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