获取导航路径的点
This commit is contained in:
@@ -79,6 +79,17 @@ public interface IMogoNavi {
|
||||
*/
|
||||
List< MogoCalculatePath > getCalculatedStrategies();
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* 获取路线坐标点
|
||||
*
|
||||
* @return 规划的路线上所有的坐标点
|
||||
*/
|
||||
List< MogoLatLng > getCalculatedPathPos();
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* 获取列表Item点击回调
|
||||
*
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
package com.mogo.map.navi;
|
||||
|
||||
import com.mogo.map.MogoLatLng;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author congtaowang
|
||||
* @since 2020-01-08
|
||||
@@ -38,6 +41,17 @@ public class MogoCalculatePath {
|
||||
*/
|
||||
private int mPathId;
|
||||
|
||||
|
||||
private List<MogoLatLng> coordList;
|
||||
|
||||
public List<MogoLatLng> getCoordList() {
|
||||
return coordList;
|
||||
}
|
||||
|
||||
public void setCoordList(List<MogoLatLng> coordList) {
|
||||
this.coordList = coordList;
|
||||
}
|
||||
|
||||
public MogoCalculatePath() {
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user