[2.12.0] local code style change

This commit is contained in:
zhongchao
2022-11-08 11:03:10 +08:00
parent 39ececd4d7
commit fbe1801488
200 changed files with 4306 additions and 5612 deletions

View File

@@ -17,6 +17,11 @@ import com.mogo.eagle.core.function.api.hmi.view.IOchBusView
*/
interface IMoGoWaringProvider : IMoGoHmiViewProxy {
/**
* 浓雾预警
*/
fun displayEffects()
/**
* 隐藏 脉速表
* @param visibility View.VISIBLE, View.INVISIBLE,View.GONE

View File

@@ -3,6 +3,7 @@ package com.mogo.eagle.core.function.api.map;
import android.content.Context;
import com.alibaba.android.arouter.facade.template.IProvider;
import com.mogo.eagle.core.function.api.map.marker.IMogoMarkerService;
import com.mogo.map.listener.IMogoHosListenerRegister;
import com.mogo.map.location.IMogoLocationClient;
import com.mogo.map.marker.IMogoMarkerManager;
@@ -54,6 +55,12 @@ public interface IMogoMapService extends IProvider {
*/
IMogoMarkerManager getMarkerManager( Context context );
/**
* 带有业务标注的服务marker
* @return
*/
IMogoMarkerService getMarkerService();
/**
* 地图UI控制
*

View File

@@ -2,24 +2,15 @@ package com.mogo.eagle.core.function.api.map.marker;
import androidx.annotation.Nullable;
import com.alibaba.android.arouter.facade.template.IProvider;
import com.mogo.map.marker.IMogoMarker;
import com.mogo.map.uicontroller.IMogoMapUIController;
/**
* @author congtaowang
* @since 2020-05-27
* <p>
* 描述
*/
public interface IMogoMarkerService extends IProvider {
public interface IMogoMarkerService {
/**
* @param object instance of com.mogo.module.common.entity.MarkerShowEntity
* @return
*/
@Nullable
IMogoMarker drawMarker( Object object );
IMogoMapUIController getMapUIController();
IMogoMarker drawMarker(Object object);
}