[3.4.0-map-sdk] wait
This commit is contained in:
@@ -66,52 +66,4 @@ public interface IMogoMap {
|
||||
*/
|
||||
void removeMarker(String uuidString);
|
||||
|
||||
/**
|
||||
* 从地图上删除所有的overlay(marker,circle,polyline 等对象)。
|
||||
*/
|
||||
void clear();
|
||||
|
||||
/**
|
||||
* 从地图上删除所有的覆盖物(marker,circle,polyline 等对象),但myLocationOverlay(内置定位覆盖物)除外。
|
||||
*
|
||||
* @param isKeepMyLocationOverlay
|
||||
*/
|
||||
void clear(boolean isKeepMyLocationOverlay);
|
||||
|
||||
/**
|
||||
* 设置屏幕上的某个像素点为地图中心点。
|
||||
*
|
||||
* @param x
|
||||
* @param y
|
||||
*/
|
||||
void setPointToCenter(int x, int y);
|
||||
|
||||
/**
|
||||
* 获取比例尺
|
||||
*
|
||||
* @return 当前缩放级别下,地图上1像素点对应的长度,单位米
|
||||
*/
|
||||
float getScalePerPixel();
|
||||
|
||||
/**
|
||||
* 改变地图缩放级别
|
||||
*
|
||||
* @param zoom
|
||||
*/
|
||||
void changeZoom(float zoom);
|
||||
|
||||
/**
|
||||
* 改变地图缩放级别的别一种方式
|
||||
*
|
||||
* @param zoom 缩放等级
|
||||
*/
|
||||
void changeZoom2(float zoom);
|
||||
|
||||
/**
|
||||
* 获取缩放比例
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
float getZoomLevel();
|
||||
|
||||
}
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
package com.mogo.map.hdcache
|
||||
|
||||
interface IHdCacheListener {
|
||||
fun onMapHdCacheProgress(cityId: Int, progress: Double)
|
||||
|
||||
fun onMapHdCacheResult(cityId: Int, state: Int)// 0失败,1成功
|
||||
}
|
||||
@@ -34,11 +34,4 @@ public interface IMogoIdentifyManager {
|
||||
*/
|
||||
void updateBatchAiMarkerPosition(HashMap<String, SocketDownData.CloudRoadDataProto> optionsArrayList);
|
||||
|
||||
/**
|
||||
* 添加感知使用到的3d模型
|
||||
*
|
||||
* @param type
|
||||
* @param modelRes
|
||||
*/
|
||||
String addPreVehicleModel(int type, int modelRes);
|
||||
}
|
||||
|
||||
@@ -316,4 +316,9 @@ public interface IMogoMapUIController {
|
||||
* @param v4
|
||||
*/
|
||||
void animateTo(double lon, double lat, float v1, float v2, float v3, float v4, int duration, boolean isGps);
|
||||
|
||||
/**
|
||||
* 从地图上删除所有的overlay(marker,circle,polyline 等对象)。
|
||||
*/
|
||||
void clear();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user