提取资源到res目录

新增地图打开鹰眼模式接口
新增自动进入鹰眼模式逻辑
This commit is contained in:
wangcongtao
2021-02-02 17:56:39 +08:00
parent 89dc62477f
commit 7b9daf7d58
14 changed files with 211 additions and 103 deletions

View File

@@ -345,4 +345,12 @@ public class MogoMapUIController implements IMogoMapUIController {
mDelegate = MogoMapDelegateFactory.getMapUIControllerDelegate();
}
}
@Override
public void openVrMode( boolean zoomGestureEnable ) {
initDelegate();
if ( mDelegate != null ) {
mDelegate.openVrMode( zoomGestureEnable );
}
}
}