[dev_arch_opt_3.0]

[Change]
[1、重命名pnc相关]

Signed-off-by: donghongyu <donghongyu@zhidaoauto.com>
This commit is contained in:
donghongyu
2023-01-06 12:08:31 +08:00
parent 723540b9a4
commit b96577811f
14 changed files with 53 additions and 79 deletions

View File

@@ -1,26 +0,0 @@
package com.mogo.eagle.core.function.api.map;
import com.alibaba.android.arouter.facade.template.IProvider;
import com.mogo.map.IDestroyable;
/**
* @author congtaowang
* @since 2020/10/23
* <p>
* 地图图层切换:高德地图 <-> 自研地图,过渡期使用
*/
public interface IMogoMapFrameController extends IProvider, IDestroyable {
void initDelegate(IMogoMapFrameController controller);
/**
* 切换到高德2D
*/
void changeTo2dMode();
/**
* 切换到自研vr
* @param isNightMode true-夜间模式false-白天模式
*/
void stepInVrMode(boolean isNightMode);
}

View File

@@ -29,23 +29,6 @@ public interface IMogoMapService extends IProvider {
*/
IMogoLocationClient getSingletonLocationClient(Context context);
/**
* 地理编码或逆地理编码服务
*
* @param context
* @return
*/
IMogoGeoSearch getGeoSearch(Context context);
/**
* poi搜索服务
*
* @param context
* @param query
* @return
*/
IMogoPoiSearch getPoiSearch(Context context, MogoPoiSearchQuery query);
/**
* marker 操作
*

View File

@@ -35,6 +35,13 @@ public interface IMogoMarkerService {
*/
void renderStopLineMarker(double lon, double lat);
/**
* 绘制箭头
* @param location
* @param markerType
* @param type
* @param rotate
*/
void drawerArrowsMarkerWithLocation(MogoLatLng location, String markerType, int type, int rotate);
/**

View File

@@ -30,7 +30,13 @@ public interface IMogoSmallMapProvider {
*/
void clearPolyline();
/**
* 查询全揽模式下V2X事件
*/
default void startQueryV2XEvents() {}
/**
* 清除V2X事件
*/
default void clearV2XMarkers() {}
}