[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

@@ -68,6 +68,14 @@ public class MogoMapUIController implements IMogoMapUIController {
return MapControlResult.ERROR;
}
@Override
public void changeZoom2(float zoom) {
initDelegate();
if (mDelegate != null) {
mDelegate.changeZoom2(zoom);
}
}
@Override
public void setDebugMode(Boolean debugMode) {
initDelegate();