提取资源到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

@@ -253,22 +253,25 @@ public interface IMogoMapUIController {
}
default void destroy(){
default void destroy() {
}
/**
* 使用自动驾驶车的定位数据
*
* @param data
*/
default void syncLocation2Map( JSONObject data ){
default void syncLocation2Map( JSONObject data ) {
}
/**
* 打开鹰眼模式
*
* @param zoomGestureEnable 是否支持手势缩放改变地图样式
*/
default void openVrMode(){
default void openVrMode( boolean zoomGestureEnable ) {
}
}