[MAP] 新增地图缩放级别接口

This commit is contained in:
renwj
2023-05-19 16:57:41 +08:00
parent da88465904
commit 337e989d37
6 changed files with 50 additions and 0 deletions

View File

@@ -346,6 +346,18 @@ public class AMapViewWrapper implements IMogoMapView,
return MapControlResult.SUCCESS;
}
@Override
public void changeZoom2(float zoom) {
if (isVrMold()) {
return;
}
CallerLogger.INSTANCE.d(M_MAP + TAG, "changeZoom2 : " + zoom);
if (DebugConfig.isDebug()) {
CallerLogger.INSTANCE.d(M_MAP + TAG, Log.getStackTraceString(new Throwable()));
}
getMap().changeZoom2(zoom);
}
@Override
public void setDebugMode(Boolean debugMode) {
MapAutoApi.INSTANCE.setDebugMode(debugMode);